some C compilers, in particular True64 cc, don't like that.
Rev: src/nettle/ChangeLog:1.246
Rev: src/nettle/configure.ac:1.33
+2004-02-12 Niels Möller <niels@s3.kth.se>
+
+ * configure.ac (CPPFLAGS, LDFLAGS): No spaces after -I and -L, as
+ some C compilers, in particular True64 cc, don't like that.
+
2004-02-08 Niels Möller <nisse@lysator.liu.se>
* configure.ac: Bumped version number to 1.10.
[with_include_path=''])
if test x$with_include_path != x ; then
- CPPFLAGS="$CPPFLAGS -I `echo $with_include_path | sed 's/:/ -I /g'`"
+ CPPFLAGS="$CPPFLAGS -I`echo $with_include_path | sed 's/:/ -I/g'`"
fi
AC_ARG_WITH(lib-path,
[with_lib_path=''])
if test x$with_lib_path != x ; then
- LDFLAGS="$LDFLAGS -L `echo $with_lib_path | sed 's/:/ -L /g'`"
+ LDFLAGS="$LDFLAGS -L`echo $with_lib_path | sed 's/:/ -L/g'`"
fi
AC_ARG_ENABLE(public-key,