shishi-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

shishi configure.ac


From: shishi-commit
Subject: shishi configure.ac
Date: Tue, 07 Oct 2003 15:55:45 -0400

CVSROOT:        /cvsroot/shishi
Module name:    shishi
Branch:         
Changes by:     Simon Josefsson <address@hidden>        03/10/07 15:55:45

Modified files:
        .              : configure.ac 

Log message:
        Put AC_CHECK_SIZEOF test early; it doesn't use libtool so if any
        libtool library was added using AC_CHECK_LIB (e.g., libidn) configure
        aborts due to linker failure (need -L/foo/bar/lib etc).

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/shishi/shishi/configure.ac.diff?tr1=1.94&tr2=1.95&r1=text&r2=text

Patches:
Index: shishi/configure.ac
diff -u shishi/configure.ac:1.94 shishi/configure.ac:1.95
--- shishi/configure.ac:1.94    Tue Sep 23 20:41:40 2003
+++ shishi/configure.ac Tue Oct  7 15:55:45 2003
@@ -75,6 +75,13 @@
 #endif
 ])
 
+# For libtasn1
+AC_CHECK_SIZEOF(unsigned long long, 8)
+AC_CHECK_SIZEOF(unsigned long int, 4)
+AC_CHECK_SIZEOF(unsigned int, 4)
+AC_CHECK_SIZEOF(unsigned short int, 2)
+AC_CHECK_SIZEOF(unsigned char, 1)
+
 # For gnulib stuff in gl/.
 gl_FUNC_ALLOCA
 gl_ARGP
@@ -211,13 +218,6 @@
 if test "$stringprep" != "no"; then
        AC_DEFINE(WITH_STRINGPREP, 1, [Define to 1 if you want to use libidn.])
 fi
-
-# For libtasn1
-AC_CHECK_SIZEOF(unsigned long long, 8)
-AC_CHECK_SIZEOF(unsigned long int, 4)
-AC_CHECK_SIZEOF(unsigned int, 4)
-AC_CHECK_SIZEOF(unsigned short int, 2)
-AC_CHECK_SIZEOF(unsigned char, 1)
 
 # Check for libtasn1
 AC_ARG_WITH(system-asn1,




reply via email to

[Prev in Thread] Current Thread [Next in Thread]