Author: hp
Date: 2001-06-05 17:45:02 GMT
2001-06-05 Havoc Pennington <hp@redhat.com>
* parse.c: never use flockfile, getc_unlocked
+2001-06-05 Havoc Pennington <hp@redhat.com>
+
+ * parse.c: never use flockfile, getc_unlocked
+
2001-06-05 Havoc Pennington <hp@redhat.com>
* pkg.m4: remove unrelated macros
AC_CONFIG_SUBDIRS(glib-1.2.8)
-AM_INIT_AUTOMAKE(pkgconfig, 0.6.0)
+AM_INIT_AUTOMAKE(pkgconfig, 0.7.0)
AM_MAINTAINER_MODE
AC_FUNC_ALLOCA
-AC_CHECK_FUNCS(flockfile)
AC_CHECK_FUNCS(setresuid setreuid,break)
AC_OUTPUT([Makefile])
#include <sys/wait.h>
#include <sys/types.h>
-#ifndef HAVE_FLOCKFILE
+/* since we never use getc_unlocked now we should really
+ * do something to speed up read_one_line
+ */
# define flockfile(f) (void)1
# define funlockfile(f) (void)1
# define getc_unlocked(f) getc(f)
-#endif /* !HAVE_FLOCKFILE */
#ifdef NATIVE_WIN32