Stub. Just #define STRTOUXMAX_SIGNED, then
[gnulib.git] / lib / Makefile.am
index 21f58c4..3e1cc2b 100644 (file)
@@ -40,6 +40,7 @@ libfetish_a_SOURCES = \
   getstr.c getstr.h \
   getugroups.c \
   group-member.h \
+  gtod.h \
   hard-locale.c hard-locale.h \
   human.c human.h \
   idcache.c \
@@ -122,7 +123,7 @@ stat.c: xstat.in
 # On systems with glibc-2.1 or newer, the file is redundant, therefore we
 # avoid installing it.
 
-all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c
+all-local: charset.alias ref-add.sed ref-del.sed lstat.c stat.c unlocked-io.h
 
 charset_alias = $(DESTDIR)$(libdir)/charset.alias
 charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
@@ -175,17 +176,15 @@ A_Z=ABCDEFGHIJKLMNOPQRSTUVWXYZ
 
 unlocked-io.h: $(srcdir)/unlocked-io.hin Makefile.am
        tmp=t$$$$;                                                      \
-       echo                                            > $$tmp;        \
-       for b in $(io_functions); do                                    \
-         f=$${b}_unlocked;                                             \
+       for f in $(io_functions); do                                    \
          u=`echo $$f|tr $(a_z) $(A_Z)`;                                \
-         echo "#  if HAVE_$${u}_UNLOCKED"              >> $$tmp;       \
-         echo "#   undef $$f"                          >> $$tmp;       \
-         echo "#   define $$f(S) $${f}_unlocked (S)"   >> $$tmp;       \
-         echo '#endif'                                 >> $$tmp;       \
-       done;                                                           \
-       sed "/^@replace_this@$$/r$$tmp" $(srcdir)/unlocked-io.hin       \
-         | sed "/^@replace_this@$$/d"                                  \
+         echo "#  if HAVE_$${u}_UNLOCKED"              ;               \
+         echo "#   undef $$f"                          ;               \
+         echo "#   define $$f(S) $${f}_unlocked (S)"   ;               \
+         echo '#  endif'                               ;               \
+       done > $$tmp;                                                   \
+       sed '/^@replace_this@$$/r '$$tmp $(srcdir)/unlocked-io.hin      \
+         | sed '/^@replace_this@$$/d'                                  \
          > $@t;                                                        \
        rm -f $$tmp;                                                    \
        mv $@t $@