Codebase list joy2key / 9b576d9
Import Debian changes 1.6.1-3 joy2key (1.6.1-3) unstable; urgency=low * Fix configure.ac so the configure script will correctly handle the case of X libraries living in the standard library search path, and regenerate configure with autoconf (Closes: #365146) John Wright authored 18 years ago Ricardo Mones committed 5 years ago
6 changed file(s) with 274 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
22 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
33 # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
44
5 timestamp='2005-08-03'
5 timestamp='2006-02-23'
66
77 # This file is free software; you can redistribute it and/or modify it
88 # under the terms of the GNU General Public License as published by
105105 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
106106 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
107107 : ${TMPDIR=/tmp} ;
108 { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
108 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
109109 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
110110 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
111111 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
205205 *:ekkoBSD:*:*)
206206 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
207207 exit ;;
208 *:SolidBSD:*:*)
209 echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
210 exit ;;
208211 macppc:MirBSD:*:*)
209212 echo powerppc-unknown-mirbsd${UNAME_RELEASE}
210213 exit ;;
763766 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
764767 exit ;;
765768 *:FreeBSD:*:*)
766 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
769 case ${UNAME_MACHINE} in
770 pc98)
771 echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
772 *)
773 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
774 esac
767775 exit ;;
768776 i*:CYGWIN*:*)
769777 echo ${UNAME_MACHINE}-pc-cygwin
770778 exit ;;
771779 i*:MINGW*:*)
780 echo ${UNAME_MACHINE}-pc-mingw32
781 exit ;;
782 i*:MSYS_NT-*:*:*)
772783 echo ${UNAME_MACHINE}-pc-mingw32
773784 exit ;;
774785 i*:windows32*:*)
778789 i*:PW*:*)
779790 echo ${UNAME_MACHINE}-pc-pw32
780791 exit ;;
781 x86:Interix*:[34]*)
782 echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
792 x86:Interix*:[345]*)
793 echo i586-pc-interix${UNAME_RELEASE}
794 exit ;;
795 EM64T:Interix*:[345]*)
796 echo x86_64-unknown-interix${UNAME_RELEASE}
783797 exit ;;
784798 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
785799 echo i${UNAME_MACHINE}-pc-mks
850864 #endif
851865 #endif
852866 EOF
853 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
867 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
868 /^CPU/{
869 s: ::g
870 p
871 }'`"
854872 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
855873 ;;
856874 mips64:Linux:*:*)
869887 #endif
870888 #endif
871889 EOF
872 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
890 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
891 /^CPU/{
892 s: ::g
893 p
894 }'`"
873895 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
874896 ;;
875897 or32:Linux:*:*)
917939 exit ;;
918940 sparc:Linux:*:* | sparc64:Linux:*:*)
919941 echo ${UNAME_MACHINE}-unknown-linux-gnu
942 exit ;;
943 vax:Linux:*:*)
944 echo ${UNAME_MACHINE}-dec-linux-gnu
920945 exit ;;
921946 x86_64:Linux:*:*)
922947 echo x86_64-unknown-linux-gnu
963988 LIBC=gnulibc1
964989 # endif
965990 #else
966 #ifdef __INTEL_COMPILER
991 #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__sun)
967992 LIBC=gnu
968993 #else
969994 LIBC=gnuaout
973998 LIBC=dietlibc
974999 #endif
9751000 EOF
976 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
1001 eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
1002 /^LIBC/{
1003 s: ::g
1004 p
1005 }'`"
9771006 test x"${LIBC}" != x && {
9781007 echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
9791008 exit
11841213 *:Darwin:*:*)
11851214 UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
11861215 case $UNAME_PROCESSOR in
1187 *86) UNAME_PROCESSOR=i686 ;;
11881216 unknown) UNAME_PROCESSOR=powerpc ;;
11891217 esac
11901218 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
12621290 exit ;;
12631291 i*86:skyos:*:*)
12641292 echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
1293 exit ;;
1294 i*86:rdos:*:*)
1295 echo ${UNAME_MACHINE}-pc-rdos
12651296 exit ;;
12661297 esac
12671298
0 This file contains any messages produced by compilers while
1 running configure, to aid debugging if configure makes a mistake.
2
3 It was created by configure, which was
4 generated by GNU Autoconf 2.59. Invocation command line was
5
6 $ ./configure --host=ia64-linux-gnu --build=ia64-linux-gnu --prefix=/usr --mandir=${prefix}/share/man --infodir=${prefix}/share/info
7
8 ## --------- ##
9 ## Platform. ##
10 ## --------- ##
11
12 hostname = krebs
13 uname -m = ia64
14 uname -r = 2.6.16-1-mckinley
15 uname -s = Linux
16 uname -v = #2 SMP Tue Mar 28 23:07:04 UTC 2006
17
18 /usr/bin/uname -p = unknown
19 /bin/uname -X = unknown
20
21 /bin/arch = ia64
22 /usr/bin/arch -k = unknown
23 /usr/convex/getsysinfo = unknown
24 hostinfo = unknown
25 /bin/machine = unknown
26 /usr/bin/oslevel = unknown
27 /bin/universe = unknown
28
29 PATH: /usr/sbin
30 PATH: /usr/bin
31 PATH: /sbin
32 PATH: /bin
33 PATH: /usr/bin/X11
34
35
36 ## ----------- ##
37 ## Core tests. ##
38 ## ----------- ##
39
40 configure:1311: checking for a BSD-compatible install
41 configure:1366: result: /usr/bin/install -c
42 configure:1377: checking whether build environment is sane
43
44 ## ---------------- ##
45 ## Cache variables. ##
46 ## ---------------- ##
47
48 ac_cv_env_CC_set=
49 ac_cv_env_CC_value=
50 ac_cv_env_CFLAGS_set=set
51 ac_cv_env_CFLAGS_value='-Wall -g -O2'
52 ac_cv_env_CPPFLAGS_set=
53 ac_cv_env_CPPFLAGS_value=
54 ac_cv_env_CPP_set=
55 ac_cv_env_CPP_value=
56 ac_cv_env_LDFLAGS_set=
57 ac_cv_env_LDFLAGS_value=
58 ac_cv_env_build_alias_set=set
59 ac_cv_env_build_alias_value=ia64-linux-gnu
60 ac_cv_env_host_alias_set=set
61 ac_cv_env_host_alias_value=ia64-linux-gnu
62 ac_cv_env_target_alias_set=
63 ac_cv_env_target_alias_value=
64 ac_cv_path_install='/usr/bin/install -c'
65
66 ## ----------------- ##
67 ## Output variables. ##
68 ## ----------------- ##
69
70 ACLOCAL=''
71 AMDEPBACKSLASH=''
72 AMDEP_FALSE=''
73 AMDEP_TRUE=''
74 AMTAR=''
75 AUTOCONF=''
76 AUTOHEADER=''
77 AUTOMAKE=''
78 AWK=''
79 CC=''
80 CCDEPMODE=''
81 CFLAGS='-Wall -g -O2'
82 CPP=''
83 CPPFLAGS=''
84 CYGPATH_W=''
85 DEFS=''
86 DEPDIR=''
87 ECHO_C=''
88 ECHO_N='-n'
89 ECHO_T=''
90 EGREP=''
91 EXEEXT=''
92 INSTALL_DATA='${INSTALL} -m 644'
93 INSTALL_PROGRAM='${INSTALL}'
94 INSTALL_SCRIPT='${INSTALL}'
95 INSTALL_STRIP_PROGRAM=''
96 LDFLAGS=''
97 LIBOBJS=''
98 LIBS=''
99 LTLIBOBJS=''
100 MAKEINFO=''
101 OBJEXT=''
102 PACKAGE=''
103 PACKAGE_BUGREPORT=''
104 PACKAGE_NAME=''
105 PACKAGE_STRING=''
106 PACKAGE_TARNAME=''
107 PACKAGE_VERSION=''
108 PATH_SEPARATOR=':'
109 SET_MAKE=''
110 SHELL='/bin/sh'
111 STRIP=''
112 VERSION=''
113 X_Stuff=''
114 ac_ct_CC=''
115 ac_ct_STRIP=''
116 am__fastdepCC_FALSE=''
117 am__fastdepCC_TRUE=''
118 am__include=''
119 am__leading_dot=''
120 am__quote=''
121 bindir='${exec_prefix}/bin'
122 build_alias='ia64-linux-gnu'
123 datadir='${prefix}/share'
124 exec_prefix='NONE'
125 host_alias='ia64-linux-gnu'
126 includedir='${prefix}/include'
127 infodir='${prefix}/share/info'
128 install_sh=''
129 libdir='${exec_prefix}/lib'
130 libexecdir='${exec_prefix}/libexec'
131 localstatedir='${prefix}/var'
132 mandir='${prefix}/share/man'
133 mkdir_p=''
134 oldincludedir='/usr/include'
135 prefix='/usr'
136 program_transform_name='s,x,x,'
137 sbindir='${exec_prefix}/sbin'
138 sharedstatedir='${prefix}/com'
139 sysconfdir='${prefix}/etc'
140 target_alias=''
141 x_headers=''
142
143 ## ----------- ##
144 ## confdefs.h. ##
145 ## ----------- ##
146
147 #define PACKAGE_BUGREPORT ""
148 #define PACKAGE_NAME ""
149 #define PACKAGE_STRING ""
150 #define PACKAGE_TARNAME ""
151 #define PACKAGE_VERSION ""
152
153 configure: caught signal 2
154 configure: exit 1
22 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
33 # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
44
5 timestamp='2005-07-08'
5 timestamp='2006-02-23'
66
77 # This file is (in principle) common to ALL GNU software.
88 # The presence of a machine in this file suggests that SOME GNU software
118118 # Here we must recognize all the valid KERNEL-OS combinations.
119119 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
120120 case $maybe_os in
121 nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
122 kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
121 nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
122 uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
123 storm-chaos* | os2-emx* | rtmk-nova*)
123124 os=-$maybe_os
124125 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
125126 ;;
170171 -hiux*)
171172 os=-hiuxwe2
172173 ;;
174 -sco6)
175 os=-sco5v6
176 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
177 ;;
173178 -sco5)
174179 os=-sco3.2v5
175180 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
183188 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
184189 ;;
185190 -sco3.2v[4-9]*)
191 # Don't forget version if it is 3.2v4 or newer.
192 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
193 ;;
194 -sco5v6*)
186195 # Don't forget version if it is 3.2v4 or newer.
187196 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
188197 ;;
238247 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
239248 | i370 | i860 | i960 | ia64 \
240249 | ip2k | iq2000 \
241 | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
250 | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore \
242251 | mips | mipsbe | mipseb | mipsel | mipsle \
243252 | mips16 \
244253 | mips64 | mips64el \
256265 | mipsisa64sr71k | mipsisa64sr71kel \
257266 | mipstx39 | mipstx39el \
258267 | mn10200 | mn10300 \
259 | ms1 \
268 | mt \
260269 | msp430 \
270 | nios | nios2 \
261271 | ns16k | ns32k \
262272 | or32 \
263273 | pdp10 | pdp11 | pj | pjl \
284294 os=-none
285295 ;;
286296 m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
297 ;;
298 ms1)
299 basic_machine=mt-unknown
287300 ;;
288301
289302 # We use `pc' rather than `unknown'
335348 | mipsisa64sr71k-* | mipsisa64sr71kel-* \
336349 | mipstx39-* | mipstx39el-* \
337350 | mmix-* \
338 | ms1-* \
351 | mt-* \
339352 | msp430-* \
353 | nios-* | nios2-* \
340354 | none-* | np1-* | ns16k-* | ns32k-* \
341355 | orion-* \
342356 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
695709 basic_machine=i386-pc
696710 os=-msdos
697711 ;;
712 ms1-*)
713 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
714 ;;
698715 mvs)
699716 basic_machine=i370-ibm
700717 os=-mvs
802819 pc532 | pc532-*)
803820 basic_machine=ns32k-pc532
804821 ;;
822 pc98)
823 basic_machine=i386-pc
824 ;;
825 pc98-*)
826 basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
827 ;;
805828 pentium | p5 | k5 | k6 | nexgen | viac3)
806829 basic_machine=i586-pc
807830 ;;
857880 pw32)
858881 basic_machine=i586-unknown
859882 os=-pw32
883 ;;
884 rdos)
885 basic_machine=i386-pc
886 os=-rdos
860887 ;;
861888 rom68k)
862889 basic_machine=m68k-rom68k
11731200 | -aos* \
11741201 | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
11751202 | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
1176 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
1203 | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
1204 | -openbsd* | -solidbsd* \
11771205 | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
11781206 | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
11791207 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
11801208 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
11811209 | -chorusos* | -chorusrdb* \
11821210 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1183 | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
1211 | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
1212 | -uxpv* | -beos* | -mpeix* | -udk* \
11841213 | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
11851214 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
11861215 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
11871216 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
11881217 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
11891218 | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
1190 | -skyos* | -haiku*)
1219 | -skyos* | -haiku* | -rdos*)
11911220 # Remember, each alternative MUST END IN *, to match a version number.
11921221 ;;
11931222 -qnx*)
36213621 # Check whether --enable-X or --disable-X was given.
36223622 if test "${enable_X+set}" = set; then
36233623 enableval="$enable_X"
3624 if test $enableval != no; then cat >>confdefs.h <<\_ACEOF
3624 if test $enableval != no; then
3625 if test x$x_libraries != x; then
3626 cat >>confdefs.h <<\_ACEOF
36253627 #define ENABLE_X 1
36263628 _ACEOF
3627 export xstuff="-L$x_libraries -lX11"; fi
3628 else
3629 cat >>confdefs.h <<\_ACEOF
3629 export xstuff="-L$x_libraries -lX11"
3630 else
3631 cat >>confdefs.h <<\_ACEOF
36303632 #define ENABLE_X 1
36313633 _ACEOF
3634 export xstuff="-lX11"
3635 fi
3636 fi
3637 else
3638 if test x$x_libraries != x; then
3639 cat >>confdefs.h <<\_ACEOF
3640 #define ENABLE_X 1
3641 _ACEOF
36323642 export X_Stuff="-L$x_libraries -lX11"
3643 else
3644 cat >>confdefs.h <<\_ACEOF
3645 #define ENABLE_X 1
3646 _ACEOF
3647 export X_Stuff="-lX11"
3648 fi
36333649 fi;
36343650
36353651
1919 AC_DEFINE(ENABLE_CONSOLE))
2020
2121 AC_ARG_ENABLE(X, [ --disable-X do not compile in X features],
22 if test $enableval != no; then AC_DEFINE(ENABLE_X) export xstuff="-L$x_libraries -lX11"; fi,
23 AC_DEFINE(ENABLE_X) export X_Stuff="-L$x_libraries -lX11")
22 [ if test $enableval != no; then
23 if test x$x_libraries != x; then
24 AC_DEFINE(ENABLE_X) export xstuff="-L$x_libraries -lX11"
25 else
26 AC_DEFINE(ENABLE_X) export xstuff="-lX11"
27 fi
28 fi ],
29 [ if test x$x_libraries != x; then
30 AC_DEFINE(ENABLE_X) export X_Stuff="-L$x_libraries -lX11"
31 else
32 AC_DEFINE(ENABLE_X) export X_Stuff="-lX11"
33 fi ])
2434
2535 AC_SUBST(X_Stuff)
2636 AC_SUBST(x_headers)
0 joy2key (1.6.1-3) unstable; urgency=low
1
2 * Fix configure.ac so the configure script will correctly handle the case of
3 X libraries living in the standard library search path, and regenerate
4 configure with autoconf (Closes: #365146)
5
6 -- John Wright <john@movingsucks.org> Sat, 6 May 2006 02:56:08 -0600
7
08 joy2key (1.6.1-2) unstable; urgency=low
19
210 * Remove dh_make generated joy2key.doc-base.EX I accidentally left behind