Makefile.am 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450
  1. ## DO NOT EDIT! GENERATED AUTOMATICALLY!
  2. ## Process this file with automake to produce Makefile.in.
  3. # Copyright (C) 2002-2017 Free Software Foundation, Inc.
  4. #
  5. # This file is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This file is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this file. If not, see <http://www.gnu.org/licenses/>.
  17. #
  18. # As a special exception to the GNU General Public License,
  19. # this file may be distributed as part of a program that
  20. # contains a configuration script generated by Autoconf, under
  21. # the same distribution terms as the rest of that program.
  22. #
  23. # Generated by gnulib-tool.
  24. # Reproduce by: gnulib-tool --import --local-dir=gnulib-local --lib=libgnu --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --avoid=lock --avoid=unistr/base --avoid=unistr/u8-mbtouc --avoid=unistr/u8-mbtouc-unsafe --avoid=unistr/u8-mbtoucr --avoid=unistr/u8-prev --avoid=unistr/u8-uctomb --avoid=unitypes --lgpl=3 --conditional-dependencies --libtool --macro-prefix=gl --no-vc-files accept4 alignof alloca-opt announce-gen autobuild bind byteswap c-strcase canonicalize-lgpl ceil clock-time close connect copysign dirfd dirname-lgpl duplocale environ extensions flexmember flock floor fpieee frexp fstat fsync full-read full-write func gendocs getaddrinfo getlogin getpeername getsockname getsockopt git-version-gen gitlog-to-changelog gnu-web-doc-update gnupload havelib iconv_open-utf inet_ntop inet_pton isfinite isinf isnan ldexp lib-symbol-versions lib-symbol-visibility libunistring link listen localcharset locale log1p lstat maintainer-makefile malloc-gnu malloca mkdir mkostemp nl_langinfo nproc open pipe-posix pipe2 poll putenv readlink recv recvfrom regex rename rmdir select send sendto setenv setsockopt shutdown socket stat-time stdlib strftime striconveh string sys_stat time times trunc unistd verify vsnprintf warnings wchar
  25. AUTOMAKE_OPTIONS = 1.9.6 gnits
  26. SUBDIRS =
  27. noinst_HEADERS =
  28. noinst_LIBRARIES =
  29. noinst_LTLIBRARIES =
  30. EXTRA_DIST =
  31. BUILT_SOURCES =
  32. SUFFIXES =
  33. MOSTLYCLEANFILES = core *.stackdump
  34. MOSTLYCLEANDIRS =
  35. CLEANFILES =
  36. DISTCLEANFILES =
  37. MAINTAINERCLEANFILES =
  38. AM_CPPFLAGS =
  39. AM_CFLAGS =
  40. noinst_LTLIBRARIES += libgnu.la
  41. libgnu_la_SOURCES =
  42. libgnu_la_LIBADD = $(gl_LTLIBOBJS)
  43. libgnu_la_DEPENDENCIES = $(gl_LTLIBOBJS)
  44. EXTRA_libgnu_la_SOURCES =
  45. libgnu_la_LDFLAGS = $(AM_LDFLAGS)
  46. libgnu_la_LDFLAGS += -no-undefined
  47. libgnu_la_LDFLAGS += $(CEIL_LIBM)
  48. libgnu_la_LDFLAGS += $(COPYSIGN_LIBM)
  49. libgnu_la_LDFLAGS += $(FLOOR_LIBM)
  50. libgnu_la_LDFLAGS += $(FREXP_LIBM)
  51. libgnu_la_LDFLAGS += $(GETADDRINFO_LIB)
  52. libgnu_la_LDFLAGS += $(HOSTENT_LIB)
  53. libgnu_la_LDFLAGS += $(INET_NTOP_LIB)
  54. libgnu_la_LDFLAGS += $(INET_PTON_LIB)
  55. libgnu_la_LDFLAGS += $(ISNAND_LIBM)
  56. libgnu_la_LDFLAGS += $(ISNANF_LIBM)
  57. libgnu_la_LDFLAGS += $(ISNANL_LIBM)
  58. libgnu_la_LDFLAGS += $(LDEXP_LIBM)
  59. libgnu_la_LDFLAGS += $(LIBSOCKET)
  60. libgnu_la_LDFLAGS += $(LIB_CLOCK_GETTIME)
  61. libgnu_la_LDFLAGS += $(LIB_GETLOGIN)
  62. libgnu_la_LDFLAGS += $(LIB_POLL)
  63. libgnu_la_LDFLAGS += $(LIB_SELECT)
  64. libgnu_la_LDFLAGS += $(LOG1P_LIBM)
  65. libgnu_la_LDFLAGS += $(LOG_LIBM)
  66. libgnu_la_LDFLAGS += $(LTLIBICONV)
  67. libgnu_la_LDFLAGS += $(LTLIBINTL)
  68. libgnu_la_LDFLAGS += $(LTLIBUNISTRING)
  69. libgnu_la_LDFLAGS += $(ROUND_LIBM)
  70. libgnu_la_LDFLAGS += $(SERVENT_LIB)
  71. libgnu_la_LDFLAGS += $(TRUNC_LIBM)
  72. ## begin gnulib module absolute-header
  73. # Use this preprocessor expression to decide whether #include_next works.
  74. # Do not rely on a 'configure'-time test for this, since the expression
  75. # might appear in an installed header, which is used by some other compiler.
  76. HAVE_INCLUDE_NEXT = (__GNUC__ || 60000000 <= __DECC_VER)
  77. ## end gnulib module absolute-header
  78. ## begin gnulib module accept
  79. EXTRA_DIST += accept.c w32sock.h
  80. EXTRA_libgnu_la_SOURCES += accept.c
  81. ## end gnulib module accept
  82. ## begin gnulib module accept4
  83. libgnu_la_SOURCES += accept4.c
  84. ## end gnulib module accept4
  85. ## begin gnulib module alignof
  86. EXTRA_DIST += alignof.h
  87. ## end gnulib module alignof
  88. ## begin gnulib module alloca
  89. if gl_GNULIB_ENABLED_alloca
  90. libgnu_la_LIBADD += @LTALLOCA@
  91. libgnu_la_DEPENDENCIES += @LTALLOCA@
  92. endif
  93. EXTRA_DIST += alloca.c
  94. EXTRA_libgnu_la_SOURCES += alloca.c
  95. ## end gnulib module alloca
  96. ## begin gnulib module alloca-opt
  97. BUILT_SOURCES += $(ALLOCA_H)
  98. # We need the following in order to create <alloca.h> when the system
  99. # doesn't have one that works with the given compiler.
  100. if GL_GENERATE_ALLOCA_H
  101. alloca.h: alloca.in.h $(top_builddir)/config.status
  102. $(AM_V_GEN)rm -f $@-t $@ && \
  103. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  104. cat $(srcdir)/alloca.in.h; \
  105. } > $@-t && \
  106. mv -f $@-t $@
  107. else
  108. alloca.h: $(top_builddir)/config.status
  109. rm -f $@
  110. endif
  111. MOSTLYCLEANFILES += alloca.h alloca.h-t
  112. EXTRA_DIST += alloca.in.h
  113. ## end gnulib module alloca-opt
  114. ## begin gnulib module announce-gen
  115. EXTRA_DIST += $(top_srcdir)/build-aux/announce-gen
  116. ## end gnulib module announce-gen
  117. ## begin gnulib module arpa_inet
  118. BUILT_SOURCES += arpa/inet.h
  119. # We need the following in order to create <arpa/inet.h> when the system
  120. # doesn't have one.
  121. arpa/inet.h: arpa_inet.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H) $(ARG_NONNULL_H)
  122. $(AM_V_at)$(MKDIR_P) arpa
  123. $(AM_V_GEN)rm -f $@-t $@ && \
  124. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  125. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  126. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  127. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  128. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  129. -e 's|@''HAVE_FEATURES_H''@|$(HAVE_FEATURES_H)|g' \
  130. -e 's|@''NEXT_ARPA_INET_H''@|$(NEXT_ARPA_INET_H)|g' \
  131. -e 's|@''HAVE_ARPA_INET_H''@|$(HAVE_ARPA_INET_H)|g' \
  132. -e 's/@''GNULIB_INET_NTOP''@/$(GNULIB_INET_NTOP)/g' \
  133. -e 's/@''GNULIB_INET_PTON''@/$(GNULIB_INET_PTON)/g' \
  134. -e 's|@''HAVE_DECL_INET_NTOP''@|$(HAVE_DECL_INET_NTOP)|g' \
  135. -e 's|@''HAVE_DECL_INET_PTON''@|$(HAVE_DECL_INET_PTON)|g' \
  136. -e 's|@''REPLACE_INET_NTOP''@|$(REPLACE_INET_NTOP)|g' \
  137. -e 's|@''REPLACE_INET_PTON''@|$(REPLACE_INET_PTON)|g' \
  138. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  139. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  140. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  141. < $(srcdir)/arpa_inet.in.h; \
  142. } > $@-t && \
  143. mv $@-t $@
  144. MOSTLYCLEANFILES += arpa/inet.h arpa/inet.h-t
  145. MOSTLYCLEANDIRS += arpa
  146. EXTRA_DIST += arpa_inet.in.h
  147. ## end gnulib module arpa_inet
  148. ## begin gnulib module assure
  149. if gl_GNULIB_ENABLED_assure
  150. endif
  151. EXTRA_DIST += assure.h
  152. ## end gnulib module assure
  153. ## begin gnulib module binary-io
  154. libgnu_la_SOURCES += binary-io.h binary-io.c
  155. ## end gnulib module binary-io
  156. ## begin gnulib module bind
  157. EXTRA_DIST += bind.c w32sock.h
  158. EXTRA_libgnu_la_SOURCES += bind.c
  159. ## end gnulib module bind
  160. ## begin gnulib module btowc
  161. if gl_GNULIB_ENABLED_btowc
  162. endif
  163. EXTRA_DIST += btowc.c
  164. EXTRA_libgnu_la_SOURCES += btowc.c
  165. ## end gnulib module btowc
  166. ## begin gnulib module byteswap
  167. BUILT_SOURCES += $(BYTESWAP_H)
  168. # We need the following in order to create <byteswap.h> when the system
  169. # doesn't have one.
  170. if GL_GENERATE_BYTESWAP_H
  171. byteswap.h: byteswap.in.h $(top_builddir)/config.status
  172. $(AM_V_GEN)rm -f $@-t $@ && \
  173. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  174. cat $(srcdir)/byteswap.in.h; \
  175. } > $@-t && \
  176. mv -f $@-t $@
  177. else
  178. byteswap.h: $(top_builddir)/config.status
  179. rm -f $@
  180. endif
  181. MOSTLYCLEANFILES += byteswap.h byteswap.h-t
  182. EXTRA_DIST += byteswap.in.h
  183. ## end gnulib module byteswap
  184. ## begin gnulib module c-ctype
  185. libgnu_la_SOURCES += c-ctype.h c-ctype.c
  186. ## end gnulib module c-ctype
  187. ## begin gnulib module c-strcase
  188. libgnu_la_SOURCES += c-strcase.h c-strcasecmp.c c-strncasecmp.c
  189. ## end gnulib module c-strcase
  190. ## begin gnulib module c-strcaseeq
  191. EXTRA_DIST += c-strcaseeq.h
  192. ## end gnulib module c-strcaseeq
  193. ## begin gnulib module canonicalize-lgpl
  194. EXTRA_DIST += canonicalize-lgpl.c
  195. EXTRA_libgnu_la_SOURCES += canonicalize-lgpl.c
  196. ## end gnulib module canonicalize-lgpl
  197. ## begin gnulib module ceil
  198. EXTRA_DIST += ceil.c
  199. EXTRA_libgnu_la_SOURCES += ceil.c
  200. ## end gnulib module ceil
  201. ## begin gnulib module close
  202. EXTRA_DIST += close.c
  203. EXTRA_libgnu_la_SOURCES += close.c
  204. ## end gnulib module close
  205. ## begin gnulib module configmake
  206. # Listed in the same order as the GNU makefile conventions, and
  207. # provided by autoconf 2.59c+ or 2.70.
  208. # The Automake-defined pkg* macros are appended, in the order
  209. # listed in the Automake 1.10a+ documentation.
  210. configmake.h: Makefile
  211. $(AM_V_GEN)rm -f $@-t && \
  212. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  213. echo '#define PREFIX "$(prefix)"'; \
  214. echo '#define EXEC_PREFIX "$(exec_prefix)"'; \
  215. echo '#define BINDIR "$(bindir)"'; \
  216. echo '#define SBINDIR "$(sbindir)"'; \
  217. echo '#define LIBEXECDIR "$(libexecdir)"'; \
  218. echo '#define DATAROOTDIR "$(datarootdir)"'; \
  219. echo '#define DATADIR "$(datadir)"'; \
  220. echo '#define SYSCONFDIR "$(sysconfdir)"'; \
  221. echo '#define SHAREDSTATEDIR "$(sharedstatedir)"'; \
  222. echo '#define LOCALSTATEDIR "$(localstatedir)"'; \
  223. echo '#define RUNSTATEDIR "$(runstatedir)"'; \
  224. echo '#define INCLUDEDIR "$(includedir)"'; \
  225. echo '#define OLDINCLUDEDIR "$(oldincludedir)"'; \
  226. echo '#define DOCDIR "$(docdir)"'; \
  227. echo '#define INFODIR "$(infodir)"'; \
  228. echo '#define HTMLDIR "$(htmldir)"'; \
  229. echo '#define DVIDIR "$(dvidir)"'; \
  230. echo '#define PDFDIR "$(pdfdir)"'; \
  231. echo '#define PSDIR "$(psdir)"'; \
  232. echo '#define LIBDIR "$(libdir)"'; \
  233. echo '#define LISPDIR "$(lispdir)"'; \
  234. echo '#define LOCALEDIR "$(localedir)"'; \
  235. echo '#define MANDIR "$(mandir)"'; \
  236. echo '#define MANEXT "$(manext)"'; \
  237. echo '#define PKGDATADIR "$(pkgdatadir)"'; \
  238. echo '#define PKGINCLUDEDIR "$(pkgincludedir)"'; \
  239. echo '#define PKGLIBDIR "$(pkglibdir)"'; \
  240. echo '#define PKGLIBEXECDIR "$(pkglibexecdir)"'; \
  241. } | sed '/""/d' > $@-t && \
  242. mv -f $@-t $@
  243. BUILT_SOURCES += configmake.h
  244. CLEANFILES += configmake.h configmake.h-t
  245. ## end gnulib module configmake
  246. ## begin gnulib module connect
  247. EXTRA_DIST += connect.c w32sock.h
  248. EXTRA_libgnu_la_SOURCES += connect.c
  249. ## end gnulib module connect
  250. ## begin gnulib module copysign
  251. EXTRA_DIST += copysign.c
  252. EXTRA_libgnu_la_SOURCES += copysign.c
  253. ## end gnulib module copysign
  254. ## begin gnulib module dirent
  255. BUILT_SOURCES += dirent.h
  256. # We need the following in order to create <dirent.h> when the system
  257. # doesn't have one that works with the given compiler.
  258. dirent.h: dirent.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  259. $(AM_V_GEN)rm -f $@-t $@ && \
  260. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  261. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  262. -e 's|@''HAVE_DIRENT_H''@|$(HAVE_DIRENT_H)|g' \
  263. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  264. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  265. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  266. -e 's|@''NEXT_DIRENT_H''@|$(NEXT_DIRENT_H)|g' \
  267. -e 's/@''GNULIB_OPENDIR''@/$(GNULIB_OPENDIR)/g' \
  268. -e 's/@''GNULIB_READDIR''@/$(GNULIB_READDIR)/g' \
  269. -e 's/@''GNULIB_REWINDDIR''@/$(GNULIB_REWINDDIR)/g' \
  270. -e 's/@''GNULIB_CLOSEDIR''@/$(GNULIB_CLOSEDIR)/g' \
  271. -e 's/@''GNULIB_DIRFD''@/$(GNULIB_DIRFD)/g' \
  272. -e 's/@''GNULIB_FDOPENDIR''@/$(GNULIB_FDOPENDIR)/g' \
  273. -e 's/@''GNULIB_SCANDIR''@/$(GNULIB_SCANDIR)/g' \
  274. -e 's/@''GNULIB_ALPHASORT''@/$(GNULIB_ALPHASORT)/g' \
  275. -e 's/@''HAVE_OPENDIR''@/$(HAVE_OPENDIR)/g' \
  276. -e 's/@''HAVE_READDIR''@/$(HAVE_READDIR)/g' \
  277. -e 's/@''HAVE_REWINDDIR''@/$(HAVE_REWINDDIR)/g' \
  278. -e 's/@''HAVE_CLOSEDIR''@/$(HAVE_CLOSEDIR)/g' \
  279. -e 's|@''HAVE_DECL_DIRFD''@|$(HAVE_DECL_DIRFD)|g' \
  280. -e 's|@''HAVE_DECL_FDOPENDIR''@|$(HAVE_DECL_FDOPENDIR)|g' \
  281. -e 's|@''HAVE_FDOPENDIR''@|$(HAVE_FDOPENDIR)|g' \
  282. -e 's|@''HAVE_SCANDIR''@|$(HAVE_SCANDIR)|g' \
  283. -e 's|@''HAVE_ALPHASORT''@|$(HAVE_ALPHASORT)|g' \
  284. -e 's|@''REPLACE_OPENDIR''@|$(REPLACE_OPENDIR)|g' \
  285. -e 's|@''REPLACE_CLOSEDIR''@|$(REPLACE_CLOSEDIR)|g' \
  286. -e 's|@''REPLACE_DIRFD''@|$(REPLACE_DIRFD)|g' \
  287. -e 's|@''REPLACE_FDOPENDIR''@|$(REPLACE_FDOPENDIR)|g' \
  288. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  289. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  290. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  291. < $(srcdir)/dirent.in.h; \
  292. } > $@-t && \
  293. mv $@-t $@
  294. MOSTLYCLEANFILES += dirent.h dirent.h-t
  295. EXTRA_DIST += dirent.in.h
  296. ## end gnulib module dirent
  297. ## begin gnulib module dirfd
  298. EXTRA_DIST += dirfd.c
  299. EXTRA_libgnu_la_SOURCES += dirfd.c
  300. ## end gnulib module dirfd
  301. ## begin gnulib module dirname-lgpl
  302. libgnu_la_SOURCES += dirname-lgpl.c basename-lgpl.c stripslash.c
  303. EXTRA_DIST += dirname.h
  304. ## end gnulib module dirname-lgpl
  305. ## begin gnulib module dosname
  306. EXTRA_DIST += dosname.h
  307. ## end gnulib module dosname
  308. ## begin gnulib module dup2
  309. if gl_GNULIB_ENABLED_dup2
  310. endif
  311. EXTRA_DIST += dup2.c
  312. EXTRA_libgnu_la_SOURCES += dup2.c
  313. ## end gnulib module dup2
  314. ## begin gnulib module duplocale
  315. EXTRA_DIST += duplocale.c
  316. EXTRA_libgnu_la_SOURCES += duplocale.c
  317. ## end gnulib module duplocale
  318. ## begin gnulib module errno
  319. BUILT_SOURCES += $(ERRNO_H)
  320. # We need the following in order to create <errno.h> when the system
  321. # doesn't have one that is POSIX compliant.
  322. if GL_GENERATE_ERRNO_H
  323. errno.h: errno.in.h $(top_builddir)/config.status
  324. $(AM_V_GEN)rm -f $@-t $@ && \
  325. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  326. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  327. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  328. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  329. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  330. -e 's|@''NEXT_ERRNO_H''@|$(NEXT_ERRNO_H)|g' \
  331. -e 's|@''EMULTIHOP_HIDDEN''@|$(EMULTIHOP_HIDDEN)|g' \
  332. -e 's|@''EMULTIHOP_VALUE''@|$(EMULTIHOP_VALUE)|g' \
  333. -e 's|@''ENOLINK_HIDDEN''@|$(ENOLINK_HIDDEN)|g' \
  334. -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \
  335. -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \
  336. -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \
  337. < $(srcdir)/errno.in.h; \
  338. } > $@-t && \
  339. mv $@-t $@
  340. else
  341. errno.h: $(top_builddir)/config.status
  342. rm -f $@
  343. endif
  344. MOSTLYCLEANFILES += errno.h errno.h-t
  345. EXTRA_DIST += errno.in.h
  346. ## end gnulib module errno
  347. ## begin gnulib module fcntl-h
  348. BUILT_SOURCES += fcntl.h
  349. # We need the following in order to create <fcntl.h> when the system
  350. # doesn't have one that works with the given compiler.
  351. fcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  352. $(AM_V_GEN)rm -f $@-t $@ && \
  353. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  354. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  355. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  356. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  357. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  358. -e 's|@''NEXT_FCNTL_H''@|$(NEXT_FCNTL_H)|g' \
  359. -e 's/@''GNULIB_FCNTL''@/$(GNULIB_FCNTL)/g' \
  360. -e 's/@''GNULIB_NONBLOCKING''@/$(GNULIB_NONBLOCKING)/g' \
  361. -e 's/@''GNULIB_OPEN''@/$(GNULIB_OPEN)/g' \
  362. -e 's/@''GNULIB_OPENAT''@/$(GNULIB_OPENAT)/g' \
  363. -e 's|@''HAVE_FCNTL''@|$(HAVE_FCNTL)|g' \
  364. -e 's|@''HAVE_OPENAT''@|$(HAVE_OPENAT)|g' \
  365. -e 's|@''REPLACE_FCNTL''@|$(REPLACE_FCNTL)|g' \
  366. -e 's|@''REPLACE_OPEN''@|$(REPLACE_OPEN)|g' \
  367. -e 's|@''REPLACE_OPENAT''@|$(REPLACE_OPENAT)|g' \
  368. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  369. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  370. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  371. < $(srcdir)/fcntl.in.h; \
  372. } > $@-t && \
  373. mv $@-t $@
  374. MOSTLYCLEANFILES += fcntl.h fcntl.h-t
  375. EXTRA_DIST += fcntl.in.h
  376. ## end gnulib module fcntl-h
  377. ## begin gnulib module fd-hook
  378. if gl_GNULIB_ENABLED_43fe87a341d9b4b93c47c3ad819a5239
  379. libgnu_la_SOURCES += fd-hook.c
  380. endif
  381. EXTRA_DIST += fd-hook.h
  382. ## end gnulib module fd-hook
  383. ## begin gnulib module flexmember
  384. if gl_GNULIB_ENABLED_flexmember
  385. endif
  386. EXTRA_DIST += flexmember.h
  387. ## end gnulib module flexmember
  388. ## begin gnulib module float
  389. BUILT_SOURCES += $(FLOAT_H)
  390. # We need the following in order to create <float.h> when the system
  391. # doesn't have one that works with the given compiler.
  392. if GL_GENERATE_FLOAT_H
  393. float.h: float.in.h $(top_builddir)/config.status
  394. $(AM_V_GEN)rm -f $@-t $@ && \
  395. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  396. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  397. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  398. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  399. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  400. -e 's|@''NEXT_FLOAT_H''@|$(NEXT_FLOAT_H)|g' \
  401. -e 's|@''REPLACE_ITOLD''@|$(REPLACE_ITOLD)|g' \
  402. < $(srcdir)/float.in.h; \
  403. } > $@-t && \
  404. mv $@-t $@
  405. else
  406. float.h: $(top_builddir)/config.status
  407. rm -f $@
  408. endif
  409. MOSTLYCLEANFILES += float.h float.h-t
  410. EXTRA_DIST += float.c float.in.h itold.c
  411. EXTRA_libgnu_la_SOURCES += float.c itold.c
  412. ## end gnulib module float
  413. ## begin gnulib module flock
  414. EXTRA_DIST += flock.c
  415. EXTRA_libgnu_la_SOURCES += flock.c
  416. ## end gnulib module flock
  417. ## begin gnulib module floor
  418. EXTRA_DIST += floor.c
  419. EXTRA_libgnu_la_SOURCES += floor.c
  420. ## end gnulib module floor
  421. ## begin gnulib module frexp
  422. EXTRA_DIST += frexp.c
  423. EXTRA_libgnu_la_SOURCES += frexp.c
  424. ## end gnulib module frexp
  425. ## begin gnulib module fstat
  426. EXTRA_DIST += fstat.c
  427. EXTRA_libgnu_la_SOURCES += fstat.c
  428. ## end gnulib module fstat
  429. ## begin gnulib module fsync
  430. EXTRA_DIST += fsync.c
  431. EXTRA_libgnu_la_SOURCES += fsync.c
  432. ## end gnulib module fsync
  433. ## begin gnulib module full-read
  434. libgnu_la_SOURCES += full-read.h full-read.c
  435. EXTRA_DIST += full-write.c
  436. EXTRA_libgnu_la_SOURCES += full-write.c
  437. ## end gnulib module full-read
  438. ## begin gnulib module full-write
  439. libgnu_la_SOURCES += full-write.h full-write.c
  440. ## end gnulib module full-write
  441. ## begin gnulib module gendocs
  442. EXTRA_DIST += $(top_srcdir)/build-aux/gendocs.sh
  443. ## end gnulib module gendocs
  444. ## begin gnulib module getaddrinfo
  445. EXTRA_DIST += gai_strerror.c getaddrinfo.c
  446. EXTRA_libgnu_la_SOURCES += gai_strerror.c getaddrinfo.c
  447. ## end gnulib module getaddrinfo
  448. ## begin gnulib module getlogin
  449. EXTRA_DIST += getlogin.c
  450. EXTRA_libgnu_la_SOURCES += getlogin.c
  451. ## end gnulib module getlogin
  452. ## begin gnulib module getpeername
  453. EXTRA_DIST += getpeername.c w32sock.h
  454. EXTRA_libgnu_la_SOURCES += getpeername.c
  455. ## end gnulib module getpeername
  456. ## begin gnulib module getsockname
  457. EXTRA_DIST += getsockname.c w32sock.h
  458. EXTRA_libgnu_la_SOURCES += getsockname.c
  459. ## end gnulib module getsockname
  460. ## begin gnulib module getsockopt
  461. EXTRA_DIST += getsockopt.c w32sock.h
  462. EXTRA_libgnu_la_SOURCES += getsockopt.c
  463. ## end gnulib module getsockopt
  464. ## begin gnulib module gettext-h
  465. if gl_GNULIB_ENABLED_be453cec5eecf5731a274f2de7f2db36
  466. libgnu_la_SOURCES += gettext.h
  467. endif
  468. ## end gnulib module gettext-h
  469. ## begin gnulib module gettimeofday
  470. EXTRA_DIST += gettimeofday.c
  471. EXTRA_libgnu_la_SOURCES += gettimeofday.c
  472. ## end gnulib module gettimeofday
  473. ## begin gnulib module git-version-gen
  474. EXTRA_DIST += $(top_srcdir)/build-aux/git-version-gen
  475. ## end gnulib module git-version-gen
  476. ## begin gnulib module gitlog-to-changelog
  477. EXTRA_DIST += $(top_srcdir)/build-aux/gitlog-to-changelog
  478. ## end gnulib module gitlog-to-changelog
  479. ## begin gnulib module gnu-web-doc-update
  480. EXTRA_DIST += $(top_srcdir)/build-aux/gnu-web-doc-update
  481. ## end gnulib module gnu-web-doc-update
  482. ## begin gnulib module gnumakefile
  483. distclean-local: clean-GNUmakefile
  484. clean-GNUmakefile:
  485. test '$(srcdir)' = . || rm -f $(top_builddir)/GNUmakefile
  486. EXTRA_DIST += $(top_srcdir)/GNUmakefile
  487. ## end gnulib module gnumakefile
  488. ## begin gnulib module gnupload
  489. EXTRA_DIST += $(top_srcdir)/build-aux/gnupload
  490. ## end gnulib module gnupload
  491. ## begin gnulib module gperf
  492. GPERF = gperf
  493. V_GPERF = $(V_GPERF_@AM_V@)
  494. V_GPERF_ = $(V_GPERF_@AM_DEFAULT_V@)
  495. V_GPERF_0 = @echo " GPERF " $@;
  496. ## end gnulib module gperf
  497. ## begin gnulib module hard-locale
  498. if gl_GNULIB_ENABLED_30838f5439487421042f2225bed3af76
  499. libgnu_la_SOURCES += hard-locale.c
  500. endif
  501. EXTRA_DIST += hard-locale.h
  502. ## end gnulib module hard-locale
  503. ## begin gnulib module havelib
  504. EXTRA_DIST += $(top_srcdir)/build-aux/config.rpath
  505. ## end gnulib module havelib
  506. ## begin gnulib module iconv-h
  507. BUILT_SOURCES += $(ICONV_H)
  508. # We need the following in order to create <iconv.h> when the system
  509. # doesn't have one that works with the given compiler.
  510. if GL_GENERATE_ICONV_H
  511. iconv.h: iconv.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  512. $(AM_V_GEN)rm -f $@-t $@ && \
  513. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  514. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  515. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  516. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  517. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  518. -e 's|@''NEXT_ICONV_H''@|$(NEXT_ICONV_H)|g' \
  519. -e 's/@''GNULIB_ICONV''@/$(GNULIB_ICONV)/g' \
  520. -e 's|@''ICONV_CONST''@|$(ICONV_CONST)|g' \
  521. -e 's|@''REPLACE_ICONV''@|$(REPLACE_ICONV)|g' \
  522. -e 's|@''REPLACE_ICONV_OPEN''@|$(REPLACE_ICONV_OPEN)|g' \
  523. -e 's|@''REPLACE_ICONV_UTF''@|$(REPLACE_ICONV_UTF)|g' \
  524. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  525. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  526. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  527. < $(srcdir)/iconv.in.h; \
  528. } > $@-t && \
  529. mv $@-t $@
  530. else
  531. iconv.h: $(top_builddir)/config.status
  532. rm -f $@
  533. endif
  534. MOSTLYCLEANFILES += iconv.h iconv.h-t
  535. EXTRA_DIST += iconv.in.h
  536. ## end gnulib module iconv-h
  537. ## begin gnulib module iconv_open
  538. iconv_open-aix.h: iconv_open-aix.gperf
  539. $(V_GPERF)$(GPERF) -m 10 $(srcdir)/iconv_open-aix.gperf > $(srcdir)/iconv_open-aix.h-t && \
  540. mv $(srcdir)/iconv_open-aix.h-t $(srcdir)/iconv_open-aix.h
  541. iconv_open-hpux.h: iconv_open-hpux.gperf
  542. $(V_GPERF)$(GPERF) -m 10 $(srcdir)/iconv_open-hpux.gperf > $(srcdir)/iconv_open-hpux.h-t && \
  543. mv $(srcdir)/iconv_open-hpux.h-t $(srcdir)/iconv_open-hpux.h
  544. iconv_open-irix.h: iconv_open-irix.gperf
  545. $(V_GPERF)$(GPERF) -m 10 $(srcdir)/iconv_open-irix.gperf > $(srcdir)/iconv_open-irix.h-t && \
  546. mv $(srcdir)/iconv_open-irix.h-t $(srcdir)/iconv_open-irix.h
  547. iconv_open-osf.h: iconv_open-osf.gperf
  548. $(V_GPERF)$(GPERF) -m 10 $(srcdir)/iconv_open-osf.gperf > $(srcdir)/iconv_open-osf.h-t && \
  549. mv $(srcdir)/iconv_open-osf.h-t $(srcdir)/iconv_open-osf.h
  550. iconv_open-solaris.h: iconv_open-solaris.gperf
  551. $(V_GPERF)$(GPERF) -m 10 $(srcdir)/iconv_open-solaris.gperf > $(srcdir)/iconv_open-solaris.h-t && \
  552. mv $(srcdir)/iconv_open-solaris.h-t $(srcdir)/iconv_open-solaris.h
  553. BUILT_SOURCES += iconv_open-aix.h iconv_open-hpux.h iconv_open-irix.h iconv_open-osf.h iconv_open-solaris.h
  554. MOSTLYCLEANFILES += iconv_open-aix.h-t iconv_open-hpux.h-t iconv_open-irix.h-t iconv_open-osf.h-t iconv_open-solaris.h-t
  555. MAINTAINERCLEANFILES += iconv_open-aix.h iconv_open-hpux.h iconv_open-irix.h iconv_open-osf.h iconv_open-solaris.h
  556. EXTRA_DIST += iconv_open-aix.h iconv_open-hpux.h iconv_open-irix.h iconv_open-osf.h iconv_open-solaris.h
  557. EXTRA_DIST += iconv.c iconv_close.c iconv_open-aix.gperf iconv_open-hpux.gperf iconv_open-irix.gperf iconv_open-osf.gperf iconv_open-solaris.gperf iconv_open.c
  558. EXTRA_libgnu_la_SOURCES += iconv.c iconv_close.c iconv_open.c
  559. ## end gnulib module iconv_open
  560. ## begin gnulib module inet_ntop
  561. EXTRA_DIST += inet_ntop.c
  562. EXTRA_libgnu_la_SOURCES += inet_ntop.c
  563. ## end gnulib module inet_ntop
  564. ## begin gnulib module inet_pton
  565. EXTRA_DIST += inet_pton.c
  566. EXTRA_libgnu_la_SOURCES += inet_pton.c
  567. ## end gnulib module inet_pton
  568. ## begin gnulib module intprops
  569. if gl_GNULIB_ENABLED_intprops
  570. endif
  571. EXTRA_DIST += intprops.h
  572. ## end gnulib module intprops
  573. ## begin gnulib module isfinite
  574. EXTRA_DIST += isfinite.c
  575. EXTRA_libgnu_la_SOURCES += isfinite.c
  576. ## end gnulib module isfinite
  577. ## begin gnulib module isinf
  578. EXTRA_DIST += isinf.c
  579. EXTRA_libgnu_la_SOURCES += isinf.c
  580. ## end gnulib module isinf
  581. ## begin gnulib module isnand
  582. EXTRA_DIST += float+.h isnan.c isnand.c
  583. EXTRA_libgnu_la_SOURCES += isnan.c isnand.c
  584. ## end gnulib module isnand
  585. ## begin gnulib module isnand-nolibm
  586. if gl_GNULIB_ENABLED_b1df7117b479d2da59d76deba468ee21
  587. endif
  588. EXTRA_DIST += float+.h isnan.c isnand-nolibm.h isnand.c
  589. EXTRA_libgnu_la_SOURCES += isnan.c isnand.c
  590. ## end gnulib module isnand-nolibm
  591. ## begin gnulib module isnanf
  592. EXTRA_DIST += float+.h isnan.c isnanf.c
  593. EXTRA_libgnu_la_SOURCES += isnan.c isnanf.c
  594. ## end gnulib module isnanf
  595. ## begin gnulib module isnanf-nolibm
  596. if gl_GNULIB_ENABLED_3f0e593033d1fc2c127581960f641b66
  597. endif
  598. EXTRA_DIST += float+.h isnan.c isnanf-nolibm.h isnanf.c
  599. EXTRA_libgnu_la_SOURCES += isnan.c isnanf.c
  600. ## end gnulib module isnanf-nolibm
  601. ## begin gnulib module isnanl
  602. EXTRA_DIST += float+.h isnan.c isnanl.c
  603. EXTRA_libgnu_la_SOURCES += isnan.c isnanl.c
  604. ## end gnulib module isnanl
  605. ## begin gnulib module isnanl-nolibm
  606. if gl_GNULIB_ENABLED_dbdf22868a5367f28bf18e0013ac6f8f
  607. endif
  608. EXTRA_DIST += float+.h isnan.c isnanl-nolibm.h isnanl.c
  609. EXTRA_libgnu_la_SOURCES += isnan.c isnanl.c
  610. ## end gnulib module isnanl-nolibm
  611. ## begin gnulib module langinfo
  612. BUILT_SOURCES += langinfo.h
  613. # We need the following in order to create an empty placeholder for
  614. # <langinfo.h> when the system doesn't have one.
  615. langinfo.h: langinfo.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
  616. $(AM_V_GEN)rm -f $@-t $@ && \
  617. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  618. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  619. -e 's|@''HAVE_LANGINFO_H''@|$(HAVE_LANGINFO_H)|g' \
  620. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  621. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  622. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  623. -e 's|@''NEXT_LANGINFO_H''@|$(NEXT_LANGINFO_H)|g' \
  624. -e 's/@''GNULIB_NL_LANGINFO''@/$(GNULIB_NL_LANGINFO)/g' \
  625. -e 's|@''HAVE_LANGINFO_CODESET''@|$(HAVE_LANGINFO_CODESET)|g' \
  626. -e 's|@''HAVE_LANGINFO_T_FMT_AMPM''@|$(HAVE_LANGINFO_T_FMT_AMPM)|g' \
  627. -e 's|@''HAVE_LANGINFO_ERA''@|$(HAVE_LANGINFO_ERA)|g' \
  628. -e 's|@''HAVE_LANGINFO_YESEXPR''@|$(HAVE_LANGINFO_YESEXPR)|g' \
  629. -e 's|@''HAVE_NL_LANGINFO''@|$(HAVE_NL_LANGINFO)|g' \
  630. -e 's|@''REPLACE_NL_LANGINFO''@|$(REPLACE_NL_LANGINFO)|g' \
  631. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  632. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  633. < $(srcdir)/langinfo.in.h; \
  634. } > $@-t && \
  635. mv $@-t $@
  636. MOSTLYCLEANFILES += langinfo.h langinfo.h-t
  637. EXTRA_DIST += langinfo.in.h
  638. ## end gnulib module langinfo
  639. ## begin gnulib module lib-symbol-visibility
  640. # The value of $(CFLAG_VISIBILITY) needs to be added to the CFLAGS for the
  641. # compilation of all sources that make up the library. This line here does it
  642. # only for the gnulib part of it. The developer is responsible for adding
  643. # $(CFLAG_VISIBILITY) to the Makefile.ams of the other portions of the library.
  644. AM_CFLAGS += $(CFLAG_VISIBILITY)
  645. ## end gnulib module lib-symbol-visibility
  646. ## begin gnulib module libunistring
  647. EXTRA_DIST += libunistring.valgrind
  648. ## end gnulib module libunistring
  649. ## begin gnulib module limits-h
  650. BUILT_SOURCES += $(LIMITS_H)
  651. # We need the following in order to create <limits.h> when the system
  652. # doesn't have one that is compatible with GNU.
  653. if GL_GENERATE_LIMITS_H
  654. limits.h: limits.in.h $(top_builddir)/config.status
  655. $(AM_V_GEN)rm -f $@-t $@ && \
  656. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  657. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  658. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  659. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  660. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  661. -e 's|@''NEXT_LIMITS_H''@|$(NEXT_LIMITS_H)|g' \
  662. < $(srcdir)/limits.in.h; \
  663. } > $@-t && \
  664. mv $@-t $@
  665. else
  666. limits.h: $(top_builddir)/config.status
  667. rm -f $@
  668. endif
  669. MOSTLYCLEANFILES += limits.h limits.h-t
  670. EXTRA_DIST += limits.in.h
  671. ## end gnulib module limits-h
  672. ## begin gnulib module link
  673. EXTRA_DIST += link.c
  674. EXTRA_libgnu_la_SOURCES += link.c
  675. ## end gnulib module link
  676. ## begin gnulib module listen
  677. EXTRA_DIST += listen.c w32sock.h
  678. EXTRA_libgnu_la_SOURCES += listen.c
  679. ## end gnulib module listen
  680. ## begin gnulib module localcharset
  681. libgnu_la_SOURCES += localcharset.h localcharset.c
  682. # We need the following in order to install a simple file in $(libdir)
  683. # which is shared with other installed packages. We use a list of referencing
  684. # packages so that "make uninstall" will remove the file if and only if it
  685. # is not used by another installed package.
  686. # On systems with glibc-2.1 or newer, the file is redundant, therefore we
  687. # avoid installing it.
  688. all-local: charset.alias ref-add.sed ref-del.sed
  689. charset_alias = $(DESTDIR)$(libdir)/charset.alias
  690. charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
  691. install-exec-local: install-exec-localcharset
  692. install-exec-localcharset: all-local
  693. if test $(GLIBC21) = no; then \
  694. case '$(host_os)' in \
  695. darwin[56]*) \
  696. need_charset_alias=true ;; \
  697. darwin* | cygwin* | mingw* | pw32* | cegcc*) \
  698. need_charset_alias=false ;; \
  699. *) \
  700. need_charset_alias=true ;; \
  701. esac ; \
  702. else \
  703. need_charset_alias=false ; \
  704. fi ; \
  705. if $$need_charset_alias; then \
  706. $(mkinstalldirs) $(DESTDIR)$(libdir) ; \
  707. fi ; \
  708. if test -f $(charset_alias); then \
  709. sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
  710. $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
  711. rm -f $(charset_tmp) ; \
  712. else \
  713. if $$need_charset_alias; then \
  714. sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
  715. $(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
  716. rm -f $(charset_tmp) ; \
  717. fi ; \
  718. fi
  719. uninstall-local: uninstall-localcharset
  720. uninstall-localcharset: all-local
  721. if test -f $(charset_alias); then \
  722. sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
  723. if grep '^# Packages using this file: $$' $(charset_tmp) \
  724. > /dev/null; then \
  725. rm -f $(charset_alias); \
  726. else \
  727. $(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
  728. fi; \
  729. rm -f $(charset_tmp); \
  730. fi
  731. charset.alias: config.charset
  732. $(AM_V_GEN)rm -f t-$@ $@ && \
  733. $(SHELL) $(srcdir)/config.charset '$(host)' > t-$@ && \
  734. mv t-$@ $@
  735. SUFFIXES += .sed .sin
  736. .sin.sed:
  737. $(AM_V_GEN)rm -f t-$@ $@ && \
  738. sed -e '/^#/d' -e 's/@''PACKAGE''@/$(PACKAGE)/g' $< > t-$@ && \
  739. mv t-$@ $@
  740. CLEANFILES += charset.alias ref-add.sed ref-del.sed
  741. EXTRA_DIST += config.charset ref-add.sin ref-del.sin
  742. ## end gnulib module localcharset
  743. ## begin gnulib module locale
  744. BUILT_SOURCES += locale.h
  745. # We need the following in order to create <locale.h> when the system
  746. # doesn't have one that provides all definitions.
  747. locale.h: locale.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  748. $(AM_V_GEN)rm -f $@-t $@ && \
  749. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  750. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  751. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  752. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  753. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  754. -e 's|@''NEXT_LOCALE_H''@|$(NEXT_LOCALE_H)|g' \
  755. -e 's/@''GNULIB_LOCALECONV''@/$(GNULIB_LOCALECONV)/g' \
  756. -e 's/@''GNULIB_SETLOCALE''@/$(GNULIB_SETLOCALE)/g' \
  757. -e 's/@''GNULIB_DUPLOCALE''@/$(GNULIB_DUPLOCALE)/g' \
  758. -e 's|@''HAVE_DUPLOCALE''@|$(HAVE_DUPLOCALE)|g' \
  759. -e 's|@''HAVE_XLOCALE_H''@|$(HAVE_XLOCALE_H)|g' \
  760. -e 's|@''REPLACE_LOCALECONV''@|$(REPLACE_LOCALECONV)|g' \
  761. -e 's|@''REPLACE_SETLOCALE''@|$(REPLACE_SETLOCALE)|g' \
  762. -e 's|@''REPLACE_DUPLOCALE''@|$(REPLACE_DUPLOCALE)|g' \
  763. -e 's|@''REPLACE_STRUCT_LCONV''@|$(REPLACE_STRUCT_LCONV)|g' \
  764. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  765. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  766. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  767. < $(srcdir)/locale.in.h; \
  768. } > $@-t && \
  769. mv $@-t $@
  770. MOSTLYCLEANFILES += locale.h locale.h-t
  771. EXTRA_DIST += locale.in.h
  772. ## end gnulib module locale
  773. ## begin gnulib module localeconv
  774. if gl_GNULIB_ENABLED_localeconv
  775. endif
  776. EXTRA_DIST += localeconv.c
  777. EXTRA_libgnu_la_SOURCES += localeconv.c
  778. ## end gnulib module localeconv
  779. ## begin gnulib module log
  780. if gl_GNULIB_ENABLED_log
  781. endif
  782. EXTRA_DIST += log.c
  783. EXTRA_libgnu_la_SOURCES += log.c
  784. ## end gnulib module log
  785. ## begin gnulib module log1p
  786. EXTRA_DIST += log1p.c
  787. EXTRA_libgnu_la_SOURCES += log1p.c
  788. ## end gnulib module log1p
  789. ## begin gnulib module lstat
  790. EXTRA_DIST += lstat.c
  791. EXTRA_libgnu_la_SOURCES += lstat.c
  792. ## end gnulib module lstat
  793. ## begin gnulib module maintainer-makefile
  794. EXTRA_DIST += $(top_srcdir)/maint.mk
  795. ## end gnulib module maintainer-makefile
  796. ## begin gnulib module malloc-gnu
  797. EXTRA_DIST += malloc.c
  798. EXTRA_libgnu_la_SOURCES += malloc.c
  799. ## end gnulib module malloc-gnu
  800. ## begin gnulib module malloc-posix
  801. EXTRA_DIST += malloc.c
  802. EXTRA_libgnu_la_SOURCES += malloc.c
  803. ## end gnulib module malloc-posix
  804. ## begin gnulib module malloca
  805. libgnu_la_SOURCES += malloca.c
  806. EXTRA_DIST += malloca.h malloca.valgrind
  807. ## end gnulib module malloca
  808. ## begin gnulib module math
  809. BUILT_SOURCES += math.h
  810. libgnu_la_SOURCES += math.c
  811. # We need the following in order to create <math.h> when the system
  812. # doesn't have one that works with the given compiler.
  813. math.h: math.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  814. $(AM_V_GEN)rm -f $@-t $@ && \
  815. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  816. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  817. -e 's|@''INCLUDE_NEXT_AS_FIRST_DIRECTIVE''@|$(INCLUDE_NEXT_AS_FIRST_DIRECTIVE)|g' \
  818. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  819. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  820. -e 's|@''NEXT_AS_FIRST_DIRECTIVE_MATH_H''@|$(NEXT_AS_FIRST_DIRECTIVE_MATH_H)|g' \
  821. -e 's/@''GNULIB_ACOSF''@/$(GNULIB_ACOSF)/g' \
  822. -e 's/@''GNULIB_ACOSL''@/$(GNULIB_ACOSL)/g' \
  823. -e 's/@''GNULIB_ASINF''@/$(GNULIB_ASINF)/g' \
  824. -e 's/@''GNULIB_ASINL''@/$(GNULIB_ASINL)/g' \
  825. -e 's/@''GNULIB_ATANF''@/$(GNULIB_ATANF)/g' \
  826. -e 's/@''GNULIB_ATANL''@/$(GNULIB_ATANL)/g' \
  827. -e 's/@''GNULIB_ATAN2F''@/$(GNULIB_ATAN2F)/g' \
  828. -e 's/@''GNULIB_CBRT''@/$(GNULIB_CBRT)/g' \
  829. -e 's/@''GNULIB_CBRTF''@/$(GNULIB_CBRTF)/g' \
  830. -e 's/@''GNULIB_CBRTL''@/$(GNULIB_CBRTL)/g' \
  831. -e 's/@''GNULIB_CEIL''@/$(GNULIB_CEIL)/g' \
  832. -e 's/@''GNULIB_CEILF''@/$(GNULIB_CEILF)/g' \
  833. -e 's/@''GNULIB_CEILL''@/$(GNULIB_CEILL)/g' \
  834. -e 's/@''GNULIB_COPYSIGN''@/$(GNULIB_COPYSIGN)/g' \
  835. -e 's/@''GNULIB_COPYSIGNF''@/$(GNULIB_COPYSIGNF)/g' \
  836. -e 's/@''GNULIB_COPYSIGNL''@/$(GNULIB_COPYSIGNL)/g' \
  837. -e 's/@''GNULIB_COSF''@/$(GNULIB_COSF)/g' \
  838. -e 's/@''GNULIB_COSL''@/$(GNULIB_COSL)/g' \
  839. -e 's/@''GNULIB_COSHF''@/$(GNULIB_COSHF)/g' \
  840. -e 's/@''GNULIB_EXPF''@/$(GNULIB_EXPF)/g' \
  841. -e 's/@''GNULIB_EXPL''@/$(GNULIB_EXPL)/g' \
  842. -e 's/@''GNULIB_EXP2''@/$(GNULIB_EXP2)/g' \
  843. -e 's/@''GNULIB_EXP2F''@/$(GNULIB_EXP2F)/g' \
  844. -e 's/@''GNULIB_EXP2L''@/$(GNULIB_EXP2L)/g' \
  845. -e 's/@''GNULIB_EXPM1''@/$(GNULIB_EXPM1)/g' \
  846. -e 's/@''GNULIB_EXPM1F''@/$(GNULIB_EXPM1F)/g' \
  847. -e 's/@''GNULIB_EXPM1L''@/$(GNULIB_EXPM1L)/g' \
  848. -e 's/@''GNULIB_FABSF''@/$(GNULIB_FABSF)/g' \
  849. -e 's/@''GNULIB_FABSL''@/$(GNULIB_FABSL)/g' \
  850. -e 's/@''GNULIB_FLOOR''@/$(GNULIB_FLOOR)/g' \
  851. -e 's/@''GNULIB_FLOORF''@/$(GNULIB_FLOORF)/g' \
  852. -e 's/@''GNULIB_FLOORL''@/$(GNULIB_FLOORL)/g' \
  853. -e 's/@''GNULIB_FMA''@/$(GNULIB_FMA)/g' \
  854. -e 's/@''GNULIB_FMAF''@/$(GNULIB_FMAF)/g' \
  855. -e 's/@''GNULIB_FMAL''@/$(GNULIB_FMAL)/g' \
  856. -e 's/@''GNULIB_FMOD''@/$(GNULIB_FMOD)/g' \
  857. -e 's/@''GNULIB_FMODF''@/$(GNULIB_FMODF)/g' \
  858. -e 's/@''GNULIB_FMODL''@/$(GNULIB_FMODL)/g' \
  859. -e 's/@''GNULIB_FREXPF''@/$(GNULIB_FREXPF)/g' \
  860. -e 's/@''GNULIB_FREXP''@/$(GNULIB_FREXP)/g' \
  861. -e 's/@''GNULIB_FREXPL''@/$(GNULIB_FREXPL)/g' \
  862. -e 's/@''GNULIB_HYPOT''@/$(GNULIB_HYPOT)/g' \
  863. -e 's/@''GNULIB_HYPOTF''@/$(GNULIB_HYPOTF)/g' \
  864. -e 's/@''GNULIB_HYPOTL''@/$(GNULIB_HYPOTL)/g' \
  865. < $(srcdir)/math.in.h | \
  866. sed -e 's/@''GNULIB_ILOGB''@/$(GNULIB_ILOGB)/g' \
  867. -e 's/@''GNULIB_ILOGBF''@/$(GNULIB_ILOGBF)/g' \
  868. -e 's/@''GNULIB_ILOGBL''@/$(GNULIB_ILOGBL)/g' \
  869. -e 's/@''GNULIB_ISFINITE''@/$(GNULIB_ISFINITE)/g' \
  870. -e 's/@''GNULIB_ISINF''@/$(GNULIB_ISINF)/g' \
  871. -e 's/@''GNULIB_ISNAN''@/$(GNULIB_ISNAN)/g' \
  872. -e 's/@''GNULIB_ISNANF''@/$(GNULIB_ISNANF)/g' \
  873. -e 's/@''GNULIB_ISNAND''@/$(GNULIB_ISNAND)/g' \
  874. -e 's/@''GNULIB_ISNANL''@/$(GNULIB_ISNANL)/g' \
  875. -e 's/@''GNULIB_LDEXPF''@/$(GNULIB_LDEXPF)/g' \
  876. -e 's/@''GNULIB_LDEXPL''@/$(GNULIB_LDEXPL)/g' \
  877. -e 's/@''GNULIB_LOG''@/$(GNULIB_LOG)/g' \
  878. -e 's/@''GNULIB_LOGF''@/$(GNULIB_LOGF)/g' \
  879. -e 's/@''GNULIB_LOGL''@/$(GNULIB_LOGL)/g' \
  880. -e 's/@''GNULIB_LOG10''@/$(GNULIB_LOG10)/g' \
  881. -e 's/@''GNULIB_LOG10F''@/$(GNULIB_LOG10F)/g' \
  882. -e 's/@''GNULIB_LOG10L''@/$(GNULIB_LOG10L)/g' \
  883. -e 's/@''GNULIB_LOG1P''@/$(GNULIB_LOG1P)/g' \
  884. -e 's/@''GNULIB_LOG1PF''@/$(GNULIB_LOG1PF)/g' \
  885. -e 's/@''GNULIB_LOG1PL''@/$(GNULIB_LOG1PL)/g' \
  886. -e 's/@''GNULIB_LOG2''@/$(GNULIB_LOG2)/g' \
  887. -e 's/@''GNULIB_LOG2F''@/$(GNULIB_LOG2F)/g' \
  888. -e 's/@''GNULIB_LOG2L''@/$(GNULIB_LOG2L)/g' \
  889. -e 's/@''GNULIB_LOGB''@/$(GNULIB_LOGB)/g' \
  890. -e 's/@''GNULIB_LOGBF''@/$(GNULIB_LOGBF)/g' \
  891. -e 's/@''GNULIB_LOGBL''@/$(GNULIB_LOGBL)/g' \
  892. -e 's/@''GNULIB_MODF''@/$(GNULIB_MODF)/g' \
  893. -e 's/@''GNULIB_MODFF''@/$(GNULIB_MODFF)/g' \
  894. -e 's/@''GNULIB_MODFL''@/$(GNULIB_MODFL)/g' \
  895. -e 's/@''GNULIB_POWF''@/$(GNULIB_POWF)/g' \
  896. -e 's/@''GNULIB_REMAINDER''@/$(GNULIB_REMAINDER)/g' \
  897. -e 's/@''GNULIB_REMAINDERF''@/$(GNULIB_REMAINDERF)/g' \
  898. -e 's/@''GNULIB_REMAINDERL''@/$(GNULIB_REMAINDERL)/g' \
  899. -e 's/@''GNULIB_RINT''@/$(GNULIB_RINT)/g' \
  900. -e 's/@''GNULIB_RINTF''@/$(GNULIB_RINTF)/g' \
  901. -e 's/@''GNULIB_RINTL''@/$(GNULIB_RINTL)/g' \
  902. -e 's/@''GNULIB_ROUND''@/$(GNULIB_ROUND)/g' \
  903. -e 's/@''GNULIB_ROUNDF''@/$(GNULIB_ROUNDF)/g' \
  904. -e 's/@''GNULIB_ROUNDL''@/$(GNULIB_ROUNDL)/g' \
  905. -e 's/@''GNULIB_SIGNBIT''@/$(GNULIB_SIGNBIT)/g' \
  906. -e 's/@''GNULIB_SINF''@/$(GNULIB_SINF)/g' \
  907. -e 's/@''GNULIB_SINL''@/$(GNULIB_SINL)/g' \
  908. -e 's/@''GNULIB_SINHF''@/$(GNULIB_SINHF)/g' \
  909. -e 's/@''GNULIB_SQRTF''@/$(GNULIB_SQRTF)/g' \
  910. -e 's/@''GNULIB_SQRTL''@/$(GNULIB_SQRTL)/g' \
  911. -e 's/@''GNULIB_TANF''@/$(GNULIB_TANF)/g' \
  912. -e 's/@''GNULIB_TANL''@/$(GNULIB_TANL)/g' \
  913. -e 's/@''GNULIB_TANHF''@/$(GNULIB_TANHF)/g' \
  914. -e 's/@''GNULIB_TRUNC''@/$(GNULIB_TRUNC)/g' \
  915. -e 's/@''GNULIB_TRUNCF''@/$(GNULIB_TRUNCF)/g' \
  916. -e 's/@''GNULIB_TRUNCL''@/$(GNULIB_TRUNCL)/g' \
  917. | \
  918. sed -e 's|@''HAVE_ACOSF''@|$(HAVE_ACOSF)|g' \
  919. -e 's|@''HAVE_ACOSL''@|$(HAVE_ACOSL)|g' \
  920. -e 's|@''HAVE_ASINF''@|$(HAVE_ASINF)|g' \
  921. -e 's|@''HAVE_ASINL''@|$(HAVE_ASINL)|g' \
  922. -e 's|@''HAVE_ATANF''@|$(HAVE_ATANF)|g' \
  923. -e 's|@''HAVE_ATANL''@|$(HAVE_ATANL)|g' \
  924. -e 's|@''HAVE_ATAN2F''@|$(HAVE_ATAN2F)|g' \
  925. -e 's|@''HAVE_CBRT''@|$(HAVE_CBRT)|g' \
  926. -e 's|@''HAVE_CBRTF''@|$(HAVE_CBRTF)|g' \
  927. -e 's|@''HAVE_CBRTL''@|$(HAVE_CBRTL)|g' \
  928. -e 's|@''HAVE_COPYSIGN''@|$(HAVE_COPYSIGN)|g' \
  929. -e 's|@''HAVE_COPYSIGNL''@|$(HAVE_COPYSIGNL)|g' \
  930. -e 's|@''HAVE_COSF''@|$(HAVE_COSF)|g' \
  931. -e 's|@''HAVE_COSL''@|$(HAVE_COSL)|g' \
  932. -e 's|@''HAVE_COSHF''@|$(HAVE_COSHF)|g' \
  933. -e 's|@''HAVE_EXPF''@|$(HAVE_EXPF)|g' \
  934. -e 's|@''HAVE_EXPL''@|$(HAVE_EXPL)|g' \
  935. -e 's|@''HAVE_EXPM1''@|$(HAVE_EXPM1)|g' \
  936. -e 's|@''HAVE_EXPM1F''@|$(HAVE_EXPM1F)|g' \
  937. -e 's|@''HAVE_FABSF''@|$(HAVE_FABSF)|g' \
  938. -e 's|@''HAVE_FABSL''@|$(HAVE_FABSL)|g' \
  939. -e 's|@''HAVE_FMA''@|$(HAVE_FMA)|g' \
  940. -e 's|@''HAVE_FMAF''@|$(HAVE_FMAF)|g' \
  941. -e 's|@''HAVE_FMAL''@|$(HAVE_FMAL)|g' \
  942. -e 's|@''HAVE_FMODF''@|$(HAVE_FMODF)|g' \
  943. -e 's|@''HAVE_FMODL''@|$(HAVE_FMODL)|g' \
  944. -e 's|@''HAVE_FREXPF''@|$(HAVE_FREXPF)|g' \
  945. -e 's|@''HAVE_HYPOTF''@|$(HAVE_HYPOTF)|g' \
  946. -e 's|@''HAVE_HYPOTL''@|$(HAVE_HYPOTL)|g' \
  947. -e 's|@''HAVE_ILOGB''@|$(HAVE_ILOGB)|g' \
  948. -e 's|@''HAVE_ILOGBF''@|$(HAVE_ILOGBF)|g' \
  949. -e 's|@''HAVE_ILOGBL''@|$(HAVE_ILOGBL)|g' \
  950. -e 's|@''HAVE_ISNANF''@|$(HAVE_ISNANF)|g' \
  951. -e 's|@''HAVE_ISNAND''@|$(HAVE_ISNAND)|g' \
  952. -e 's|@''HAVE_ISNANL''@|$(HAVE_ISNANL)|g' \
  953. -e 's|@''HAVE_LDEXPF''@|$(HAVE_LDEXPF)|g' \
  954. -e 's|@''HAVE_LOGF''@|$(HAVE_LOGF)|g' \
  955. -e 's|@''HAVE_LOGL''@|$(HAVE_LOGL)|g' \
  956. -e 's|@''HAVE_LOG10F''@|$(HAVE_LOG10F)|g' \
  957. -e 's|@''HAVE_LOG10L''@|$(HAVE_LOG10L)|g' \
  958. -e 's|@''HAVE_LOG1P''@|$(HAVE_LOG1P)|g' \
  959. -e 's|@''HAVE_LOG1PF''@|$(HAVE_LOG1PF)|g' \
  960. -e 's|@''HAVE_LOG1PL''@|$(HAVE_LOG1PL)|g' \
  961. -e 's|@''HAVE_LOGBF''@|$(HAVE_LOGBF)|g' \
  962. -e 's|@''HAVE_LOGBL''@|$(HAVE_LOGBL)|g' \
  963. -e 's|@''HAVE_MODFF''@|$(HAVE_MODFF)|g' \
  964. -e 's|@''HAVE_MODFL''@|$(HAVE_MODFL)|g' \
  965. -e 's|@''HAVE_POWF''@|$(HAVE_POWF)|g' \
  966. -e 's|@''HAVE_REMAINDER''@|$(HAVE_REMAINDER)|g' \
  967. -e 's|@''HAVE_REMAINDERF''@|$(HAVE_REMAINDERF)|g' \
  968. -e 's|@''HAVE_RINT''@|$(HAVE_RINT)|g' \
  969. -e 's|@''HAVE_RINTL''@|$(HAVE_RINTL)|g' \
  970. -e 's|@''HAVE_SINF''@|$(HAVE_SINF)|g' \
  971. -e 's|@''HAVE_SINL''@|$(HAVE_SINL)|g' \
  972. -e 's|@''HAVE_SINHF''@|$(HAVE_SINHF)|g' \
  973. -e 's|@''HAVE_SQRTF''@|$(HAVE_SQRTF)|g' \
  974. -e 's|@''HAVE_SQRTL''@|$(HAVE_SQRTL)|g' \
  975. -e 's|@''HAVE_TANF''@|$(HAVE_TANF)|g' \
  976. -e 's|@''HAVE_TANL''@|$(HAVE_TANL)|g' \
  977. -e 's|@''HAVE_TANHF''@|$(HAVE_TANHF)|g' \
  978. -e 's|@''HAVE_DECL_ACOSL''@|$(HAVE_DECL_ACOSL)|g' \
  979. -e 's|@''HAVE_DECL_ASINL''@|$(HAVE_DECL_ASINL)|g' \
  980. -e 's|@''HAVE_DECL_ATANL''@|$(HAVE_DECL_ATANL)|g' \
  981. -e 's|@''HAVE_DECL_CBRTF''@|$(HAVE_DECL_CBRTF)|g' \
  982. -e 's|@''HAVE_DECL_CBRTL''@|$(HAVE_DECL_CBRTL)|g' \
  983. -e 's|@''HAVE_DECL_CEILF''@|$(HAVE_DECL_CEILF)|g' \
  984. -e 's|@''HAVE_DECL_CEILL''@|$(HAVE_DECL_CEILL)|g' \
  985. -e 's|@''HAVE_DECL_COPYSIGNF''@|$(HAVE_DECL_COPYSIGNF)|g' \
  986. -e 's|@''HAVE_DECL_COSL''@|$(HAVE_DECL_COSL)|g' \
  987. -e 's|@''HAVE_DECL_EXPL''@|$(HAVE_DECL_EXPL)|g' \
  988. -e 's|@''HAVE_DECL_EXP2''@|$(HAVE_DECL_EXP2)|g' \
  989. -e 's|@''HAVE_DECL_EXP2F''@|$(HAVE_DECL_EXP2F)|g' \
  990. -e 's|@''HAVE_DECL_EXP2L''@|$(HAVE_DECL_EXP2L)|g' \
  991. -e 's|@''HAVE_DECL_EXPM1L''@|$(HAVE_DECL_EXPM1L)|g' \
  992. -e 's|@''HAVE_DECL_FLOORF''@|$(HAVE_DECL_FLOORF)|g' \
  993. -e 's|@''HAVE_DECL_FLOORL''@|$(HAVE_DECL_FLOORL)|g' \
  994. -e 's|@''HAVE_DECL_FREXPL''@|$(HAVE_DECL_FREXPL)|g' \
  995. -e 's|@''HAVE_DECL_LDEXPL''@|$(HAVE_DECL_LDEXPL)|g' \
  996. -e 's|@''HAVE_DECL_LOGL''@|$(HAVE_DECL_LOGL)|g' \
  997. -e 's|@''HAVE_DECL_LOG10L''@|$(HAVE_DECL_LOG10L)|g' \
  998. -e 's|@''HAVE_DECL_LOG2''@|$(HAVE_DECL_LOG2)|g' \
  999. -e 's|@''HAVE_DECL_LOG2F''@|$(HAVE_DECL_LOG2F)|g' \
  1000. -e 's|@''HAVE_DECL_LOG2L''@|$(HAVE_DECL_LOG2L)|g' \
  1001. -e 's|@''HAVE_DECL_LOGB''@|$(HAVE_DECL_LOGB)|g' \
  1002. -e 's|@''HAVE_DECL_REMAINDER''@|$(HAVE_DECL_REMAINDER)|g' \
  1003. -e 's|@''HAVE_DECL_REMAINDERL''@|$(HAVE_DECL_REMAINDERL)|g' \
  1004. -e 's|@''HAVE_DECL_RINTF''@|$(HAVE_DECL_RINTF)|g' \
  1005. -e 's|@''HAVE_DECL_ROUND''@|$(HAVE_DECL_ROUND)|g' \
  1006. -e 's|@''HAVE_DECL_ROUNDF''@|$(HAVE_DECL_ROUNDF)|g' \
  1007. -e 's|@''HAVE_DECL_ROUNDL''@|$(HAVE_DECL_ROUNDL)|g' \
  1008. -e 's|@''HAVE_DECL_SINL''@|$(HAVE_DECL_SINL)|g' \
  1009. -e 's|@''HAVE_DECL_SQRTL''@|$(HAVE_DECL_SQRTL)|g' \
  1010. -e 's|@''HAVE_DECL_TANL''@|$(HAVE_DECL_TANL)|g' \
  1011. -e 's|@''HAVE_DECL_TRUNC''@|$(HAVE_DECL_TRUNC)|g' \
  1012. -e 's|@''HAVE_DECL_TRUNCF''@|$(HAVE_DECL_TRUNCF)|g' \
  1013. -e 's|@''HAVE_DECL_TRUNCL''@|$(HAVE_DECL_TRUNCL)|g' \
  1014. | \
  1015. sed -e 's|@''REPLACE_ACOSF''@|$(REPLACE_ACOSF)|g' \
  1016. -e 's|@''REPLACE_ASINF''@|$(REPLACE_ASINF)|g' \
  1017. -e 's|@''REPLACE_ATANF''@|$(REPLACE_ATANF)|g' \
  1018. -e 's|@''REPLACE_ATAN2F''@|$(REPLACE_ATAN2F)|g' \
  1019. -e 's|@''REPLACE_CBRTF''@|$(REPLACE_CBRTF)|g' \
  1020. -e 's|@''REPLACE_CBRTL''@|$(REPLACE_CBRTL)|g' \
  1021. -e 's|@''REPLACE_CEIL''@|$(REPLACE_CEIL)|g' \
  1022. -e 's|@''REPLACE_CEILF''@|$(REPLACE_CEILF)|g' \
  1023. -e 's|@''REPLACE_CEILL''@|$(REPLACE_CEILL)|g' \
  1024. -e 's|@''REPLACE_COSF''@|$(REPLACE_COSF)|g' \
  1025. -e 's|@''REPLACE_COSHF''@|$(REPLACE_COSHF)|g' \
  1026. -e 's|@''REPLACE_EXPF''@|$(REPLACE_EXPF)|g' \
  1027. -e 's|@''REPLACE_EXPM1''@|$(REPLACE_EXPM1)|g' \
  1028. -e 's|@''REPLACE_EXPM1F''@|$(REPLACE_EXPM1F)|g' \
  1029. -e 's|@''REPLACE_EXP2''@|$(REPLACE_EXP2)|g' \
  1030. -e 's|@''REPLACE_EXP2L''@|$(REPLACE_EXP2L)|g' \
  1031. -e 's|@''REPLACE_FABSL''@|$(REPLACE_FABSL)|g' \
  1032. -e 's|@''REPLACE_FLOOR''@|$(REPLACE_FLOOR)|g' \
  1033. -e 's|@''REPLACE_FLOORF''@|$(REPLACE_FLOORF)|g' \
  1034. -e 's|@''REPLACE_FLOORL''@|$(REPLACE_FLOORL)|g' \
  1035. -e 's|@''REPLACE_FMA''@|$(REPLACE_FMA)|g' \
  1036. -e 's|@''REPLACE_FMAF''@|$(REPLACE_FMAF)|g' \
  1037. -e 's|@''REPLACE_FMAL''@|$(REPLACE_FMAL)|g' \
  1038. -e 's|@''REPLACE_FMOD''@|$(REPLACE_FMOD)|g' \
  1039. -e 's|@''REPLACE_FMODF''@|$(REPLACE_FMODF)|g' \
  1040. -e 's|@''REPLACE_FMODL''@|$(REPLACE_FMODL)|g' \
  1041. -e 's|@''REPLACE_FREXPF''@|$(REPLACE_FREXPF)|g' \
  1042. -e 's|@''REPLACE_FREXP''@|$(REPLACE_FREXP)|g' \
  1043. -e 's|@''REPLACE_FREXPL''@|$(REPLACE_FREXPL)|g' \
  1044. -e 's|@''REPLACE_HUGE_VAL''@|$(REPLACE_HUGE_VAL)|g' \
  1045. -e 's|@''REPLACE_HYPOT''@|$(REPLACE_HYPOT)|g' \
  1046. -e 's|@''REPLACE_HYPOTF''@|$(REPLACE_HYPOTF)|g' \
  1047. -e 's|@''REPLACE_HYPOTL''@|$(REPLACE_HYPOTL)|g' \
  1048. -e 's|@''REPLACE_ILOGB''@|$(REPLACE_ILOGB)|g' \
  1049. -e 's|@''REPLACE_ILOGBF''@|$(REPLACE_ILOGBF)|g' \
  1050. -e 's|@''REPLACE_ISFINITE''@|$(REPLACE_ISFINITE)|g' \
  1051. -e 's|@''REPLACE_ISINF''@|$(REPLACE_ISINF)|g' \
  1052. -e 's|@''REPLACE_ISNAN''@|$(REPLACE_ISNAN)|g' \
  1053. -e 's|@''REPLACE_ITOLD''@|$(REPLACE_ITOLD)|g' \
  1054. -e 's|@''REPLACE_LDEXPL''@|$(REPLACE_LDEXPL)|g' \
  1055. -e 's|@''REPLACE_LOG''@|$(REPLACE_LOG)|g' \
  1056. -e 's|@''REPLACE_LOGF''@|$(REPLACE_LOGF)|g' \
  1057. -e 's|@''REPLACE_LOGL''@|$(REPLACE_LOGL)|g' \
  1058. -e 's|@''REPLACE_LOG10''@|$(REPLACE_LOG10)|g' \
  1059. -e 's|@''REPLACE_LOG10F''@|$(REPLACE_LOG10F)|g' \
  1060. -e 's|@''REPLACE_LOG10L''@|$(REPLACE_LOG10L)|g' \
  1061. -e 's|@''REPLACE_LOG1P''@|$(REPLACE_LOG1P)|g' \
  1062. -e 's|@''REPLACE_LOG1PF''@|$(REPLACE_LOG1PF)|g' \
  1063. -e 's|@''REPLACE_LOG1PL''@|$(REPLACE_LOG1PL)|g' \
  1064. -e 's|@''REPLACE_LOG2''@|$(REPLACE_LOG2)|g' \
  1065. -e 's|@''REPLACE_LOG2F''@|$(REPLACE_LOG2F)|g' \
  1066. -e 's|@''REPLACE_LOG2L''@|$(REPLACE_LOG2L)|g' \
  1067. -e 's|@''REPLACE_LOGB''@|$(REPLACE_LOGB)|g' \
  1068. -e 's|@''REPLACE_LOGBF''@|$(REPLACE_LOGBF)|g' \
  1069. -e 's|@''REPLACE_LOGBL''@|$(REPLACE_LOGBL)|g' \
  1070. -e 's|@''REPLACE_MODF''@|$(REPLACE_MODF)|g' \
  1071. -e 's|@''REPLACE_MODFF''@|$(REPLACE_MODFF)|g' \
  1072. -e 's|@''REPLACE_MODFL''@|$(REPLACE_MODFL)|g' \
  1073. -e 's|@''REPLACE_NAN''@|$(REPLACE_NAN)|g' \
  1074. -e 's|@''REPLACE_REMAINDER''@|$(REPLACE_REMAINDER)|g' \
  1075. -e 's|@''REPLACE_REMAINDERF''@|$(REPLACE_REMAINDERF)|g' \
  1076. -e 's|@''REPLACE_REMAINDERL''@|$(REPLACE_REMAINDERL)|g' \
  1077. -e 's|@''REPLACE_ROUND''@|$(REPLACE_ROUND)|g' \
  1078. -e 's|@''REPLACE_ROUNDF''@|$(REPLACE_ROUNDF)|g' \
  1079. -e 's|@''REPLACE_ROUNDL''@|$(REPLACE_ROUNDL)|g' \
  1080. -e 's|@''REPLACE_SIGNBIT''@|$(REPLACE_SIGNBIT)|g' \
  1081. -e 's|@''REPLACE_SIGNBIT_USING_GCC''@|$(REPLACE_SIGNBIT_USING_GCC)|g' \
  1082. -e 's|@''REPLACE_SINF''@|$(REPLACE_SINF)|g' \
  1083. -e 's|@''REPLACE_SINHF''@|$(REPLACE_SINHF)|g' \
  1084. -e 's|@''REPLACE_SQRTF''@|$(REPLACE_SQRTF)|g' \
  1085. -e 's|@''REPLACE_SQRTL''@|$(REPLACE_SQRTL)|g' \
  1086. -e 's|@''REPLACE_TANF''@|$(REPLACE_TANF)|g' \
  1087. -e 's|@''REPLACE_TANHF''@|$(REPLACE_TANHF)|g' \
  1088. -e 's|@''REPLACE_TRUNC''@|$(REPLACE_TRUNC)|g' \
  1089. -e 's|@''REPLACE_TRUNCF''@|$(REPLACE_TRUNCF)|g' \
  1090. -e 's|@''REPLACE_TRUNCL''@|$(REPLACE_TRUNCL)|g' \
  1091. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1092. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  1093. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
  1094. } > $@-t && \
  1095. mv $@-t $@
  1096. MOSTLYCLEANFILES += math.h math.h-t
  1097. EXTRA_DIST += math.in.h
  1098. ## end gnulib module math
  1099. ## begin gnulib module mbrtowc
  1100. if gl_GNULIB_ENABLED_mbrtowc
  1101. endif
  1102. EXTRA_DIST += mbrtowc.c
  1103. EXTRA_libgnu_la_SOURCES += mbrtowc.c
  1104. ## end gnulib module mbrtowc
  1105. ## begin gnulib module mbsinit
  1106. if gl_GNULIB_ENABLED_mbsinit
  1107. endif
  1108. EXTRA_DIST += mbsinit.c
  1109. EXTRA_libgnu_la_SOURCES += mbsinit.c
  1110. ## end gnulib module mbsinit
  1111. ## begin gnulib module mbtowc
  1112. if gl_GNULIB_ENABLED_mbtowc
  1113. endif
  1114. EXTRA_DIST += mbtowc-impl.h mbtowc.c
  1115. EXTRA_libgnu_la_SOURCES += mbtowc.c
  1116. ## end gnulib module mbtowc
  1117. ## begin gnulib module memchr
  1118. if gl_GNULIB_ENABLED_memchr
  1119. endif
  1120. EXTRA_DIST += memchr.c memchr.valgrind
  1121. EXTRA_libgnu_la_SOURCES += memchr.c
  1122. ## end gnulib module memchr
  1123. ## begin gnulib module mkdir
  1124. EXTRA_DIST += mkdir.c
  1125. EXTRA_libgnu_la_SOURCES += mkdir.c
  1126. ## end gnulib module mkdir
  1127. ## begin gnulib module mkostemp
  1128. EXTRA_DIST += mkostemp.c
  1129. EXTRA_libgnu_la_SOURCES += mkostemp.c
  1130. ## end gnulib module mkostemp
  1131. ## begin gnulib module mktime
  1132. if gl_GNULIB_ENABLED_mktime
  1133. endif
  1134. EXTRA_DIST += mktime-internal.h mktime.c
  1135. EXTRA_libgnu_la_SOURCES += mktime.c
  1136. ## end gnulib module mktime
  1137. ## begin gnulib module mktime-internal
  1138. if gl_GNULIB_ENABLED_5264294aa0a5557541b53c8c741f7f31
  1139. endif
  1140. EXTRA_DIST += mktime-internal.h mktime.c
  1141. EXTRA_libgnu_la_SOURCES += mktime.c
  1142. ## end gnulib module mktime-internal
  1143. ## begin gnulib module msvc-inval
  1144. EXTRA_DIST += msvc-inval.c msvc-inval.h
  1145. EXTRA_libgnu_la_SOURCES += msvc-inval.c
  1146. ## end gnulib module msvc-inval
  1147. ## begin gnulib module msvc-nothrow
  1148. EXTRA_DIST += msvc-nothrow.c msvc-nothrow.h
  1149. EXTRA_libgnu_la_SOURCES += msvc-nothrow.c
  1150. ## end gnulib module msvc-nothrow
  1151. ## begin gnulib module netdb
  1152. BUILT_SOURCES += netdb.h
  1153. # We need the following in order to create <netdb.h> when the system
  1154. # doesn't have one that works with the given compiler.
  1155. netdb.h: netdb.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  1156. $(AM_V_GEN)rm -f $@-t $@ && \
  1157. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1158. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1159. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1160. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1161. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1162. -e 's|@''NEXT_NETDB_H''@|$(NEXT_NETDB_H)|g' \
  1163. -e 's|@''HAVE_NETDB_H''@|$(HAVE_NETDB_H)|g' \
  1164. -e 's/@''GNULIB_GETADDRINFO''@/$(GNULIB_GETADDRINFO)/g' \
  1165. -e 's|@''HAVE_STRUCT_ADDRINFO''@|$(HAVE_STRUCT_ADDRINFO)|g' \
  1166. -e 's|@''HAVE_DECL_FREEADDRINFO''@|$(HAVE_DECL_FREEADDRINFO)|g' \
  1167. -e 's|@''HAVE_DECL_GAI_STRERROR''@|$(HAVE_DECL_GAI_STRERROR)|g' \
  1168. -e 's|@''HAVE_DECL_GETADDRINFO''@|$(HAVE_DECL_GETADDRINFO)|g' \
  1169. -e 's|@''HAVE_DECL_GETNAMEINFO''@|$(HAVE_DECL_GETNAMEINFO)|g' \
  1170. -e 's|@''REPLACE_GAI_STRERROR''@|$(REPLACE_GAI_STRERROR)|g' \
  1171. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1172. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  1173. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  1174. < $(srcdir)/netdb.in.h; \
  1175. } > $@-t && \
  1176. mv $@-t $@
  1177. MOSTLYCLEANFILES += netdb.h netdb.h-t
  1178. EXTRA_DIST += netdb.in.h
  1179. ## end gnulib module netdb
  1180. ## begin gnulib module netinet_in
  1181. BUILT_SOURCES += $(NETINET_IN_H)
  1182. # We need the following in order to create <netinet/in.h> when the system
  1183. # doesn't have one.
  1184. if GL_GENERATE_NETINET_IN_H
  1185. netinet/in.h: netinet_in.in.h $(top_builddir)/config.status
  1186. $(AM_V_at)$(MKDIR_P) netinet
  1187. $(AM_V_GEN)rm -f $@-t $@ && \
  1188. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1189. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1190. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1191. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1192. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1193. -e 's|@''NEXT_NETINET_IN_H''@|$(NEXT_NETINET_IN_H)|g' \
  1194. -e 's|@''HAVE_NETINET_IN_H''@|$(HAVE_NETINET_IN_H)|g' \
  1195. < $(srcdir)/netinet_in.in.h; \
  1196. } > $@-t && \
  1197. mv $@-t $@
  1198. else
  1199. netinet/in.h: $(top_builddir)/config.status
  1200. rm -f $@
  1201. endif
  1202. MOSTLYCLEANFILES += netinet/in.h netinet/in.h-t
  1203. MOSTLYCLEANDIRS += netinet
  1204. EXTRA_DIST += netinet_in.in.h
  1205. ## end gnulib module netinet_in
  1206. ## begin gnulib module nl_langinfo
  1207. EXTRA_DIST += nl_langinfo.c
  1208. EXTRA_libgnu_la_SOURCES += nl_langinfo.c
  1209. ## end gnulib module nl_langinfo
  1210. ## begin gnulib module nproc
  1211. libgnu_la_SOURCES += nproc.c
  1212. EXTRA_DIST += nproc.h
  1213. ## end gnulib module nproc
  1214. ## begin gnulib module open
  1215. EXTRA_DIST += open.c
  1216. EXTRA_libgnu_la_SOURCES += open.c
  1217. ## end gnulib module open
  1218. ## begin gnulib module pathmax
  1219. if gl_GNULIB_ENABLED_pathmax
  1220. endif
  1221. EXTRA_DIST += pathmax.h
  1222. ## end gnulib module pathmax
  1223. ## begin gnulib module pipe-posix
  1224. EXTRA_DIST += pipe.c
  1225. EXTRA_libgnu_la_SOURCES += pipe.c
  1226. ## end gnulib module pipe-posix
  1227. ## begin gnulib module pipe2
  1228. libgnu_la_SOURCES += pipe2.c
  1229. ## end gnulib module pipe2
  1230. ## begin gnulib module poll
  1231. EXTRA_DIST += poll.c
  1232. EXTRA_libgnu_la_SOURCES += poll.c
  1233. ## end gnulib module poll
  1234. ## begin gnulib module poll-h
  1235. BUILT_SOURCES += poll.h
  1236. # We need the following in order to create <poll.h> when the system
  1237. # doesn't have one.
  1238. poll.h: poll.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
  1239. $(AM_V_GEN)rm -f $@-t $@ && \
  1240. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1241. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1242. -e 's|@''HAVE_POLL_H''@|$(HAVE_POLL_H)|g' \
  1243. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1244. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1245. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1246. -e 's|@''NEXT_POLL_H''@|$(NEXT_POLL_H)|g' \
  1247. -e 's/@''GNULIB_POLL''@/$(GNULIB_POLL)/g' \
  1248. -e 's|@''HAVE_POLL''@|$(HAVE_POLL)|g' \
  1249. -e 's|@''REPLACE_POLL''@|$(REPLACE_POLL)|g' \
  1250. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1251. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  1252. < $(srcdir)/poll.in.h; \
  1253. } > $@-t && \
  1254. mv -f $@-t $@
  1255. MOSTLYCLEANFILES += poll.h poll.h-t
  1256. EXTRA_DIST += poll.in.h
  1257. ## end gnulib module poll-h
  1258. ## begin gnulib module putenv
  1259. EXTRA_DIST += putenv.c
  1260. EXTRA_libgnu_la_SOURCES += putenv.c
  1261. ## end gnulib module putenv
  1262. ## begin gnulib module raise
  1263. if gl_GNULIB_ENABLED_raise
  1264. endif
  1265. EXTRA_DIST += raise.c
  1266. EXTRA_libgnu_la_SOURCES += raise.c
  1267. ## end gnulib module raise
  1268. ## begin gnulib module read
  1269. EXTRA_DIST += read.c
  1270. EXTRA_libgnu_la_SOURCES += read.c
  1271. ## end gnulib module read
  1272. ## begin gnulib module readlink
  1273. EXTRA_DIST += readlink.c
  1274. EXTRA_libgnu_la_SOURCES += readlink.c
  1275. ## end gnulib module readlink
  1276. ## begin gnulib module recv
  1277. EXTRA_DIST += recv.c w32sock.h
  1278. EXTRA_libgnu_la_SOURCES += recv.c
  1279. ## end gnulib module recv
  1280. ## begin gnulib module recvfrom
  1281. EXTRA_DIST += recvfrom.c w32sock.h
  1282. EXTRA_libgnu_la_SOURCES += recvfrom.c
  1283. ## end gnulib module recvfrom
  1284. ## begin gnulib module regex
  1285. EXTRA_DIST += regcomp.c regex.c regex.h regex_internal.c regex_internal.h regexec.c
  1286. EXTRA_libgnu_la_SOURCES += regcomp.c regex.c regex_internal.c regexec.c
  1287. ## end gnulib module regex
  1288. ## begin gnulib module rename
  1289. EXTRA_DIST += rename.c
  1290. EXTRA_libgnu_la_SOURCES += rename.c
  1291. ## end gnulib module rename
  1292. ## begin gnulib module rmdir
  1293. EXTRA_DIST += rmdir.c
  1294. EXTRA_libgnu_la_SOURCES += rmdir.c
  1295. ## end gnulib module rmdir
  1296. ## begin gnulib module round
  1297. if gl_GNULIB_ENABLED_round
  1298. endif
  1299. EXTRA_DIST += round.c
  1300. EXTRA_libgnu_la_SOURCES += round.c
  1301. ## end gnulib module round
  1302. ## begin gnulib module safe-read
  1303. libgnu_la_SOURCES += safe-read.c
  1304. EXTRA_DIST += safe-read.h
  1305. ## end gnulib module safe-read
  1306. ## begin gnulib module safe-write
  1307. libgnu_la_SOURCES += safe-write.c
  1308. EXTRA_DIST += safe-read.c safe-write.h
  1309. EXTRA_libgnu_la_SOURCES += safe-read.c
  1310. ## end gnulib module safe-write
  1311. ## begin gnulib module same-inode
  1312. if gl_GNULIB_ENABLED_9bc5f216d57e231e4834049d67d0db62
  1313. endif
  1314. EXTRA_DIST += same-inode.h
  1315. ## end gnulib module same-inode
  1316. ## begin gnulib module secure_getenv
  1317. if gl_GNULIB_ENABLED_secure_getenv
  1318. endif
  1319. EXTRA_DIST += secure_getenv.c
  1320. EXTRA_libgnu_la_SOURCES += secure_getenv.c
  1321. ## end gnulib module secure_getenv
  1322. ## begin gnulib module select
  1323. EXTRA_DIST += select.c
  1324. EXTRA_libgnu_la_SOURCES += select.c
  1325. ## end gnulib module select
  1326. ## begin gnulib module send
  1327. EXTRA_DIST += send.c w32sock.h
  1328. EXTRA_libgnu_la_SOURCES += send.c
  1329. ## end gnulib module send
  1330. ## begin gnulib module sendto
  1331. EXTRA_DIST += sendto.c w32sock.h
  1332. EXTRA_libgnu_la_SOURCES += sendto.c
  1333. ## end gnulib module sendto
  1334. ## begin gnulib module setenv
  1335. EXTRA_DIST += setenv.c
  1336. EXTRA_libgnu_la_SOURCES += setenv.c
  1337. ## end gnulib module setenv
  1338. ## begin gnulib module setsockopt
  1339. EXTRA_DIST += setsockopt.c w32sock.h
  1340. EXTRA_libgnu_la_SOURCES += setsockopt.c
  1341. ## end gnulib module setsockopt
  1342. ## begin gnulib module shutdown
  1343. EXTRA_DIST += shutdown.c w32sock.h
  1344. EXTRA_libgnu_la_SOURCES += shutdown.c
  1345. ## end gnulib module shutdown
  1346. ## begin gnulib module signal-h
  1347. BUILT_SOURCES += signal.h
  1348. # We need the following in order to create <signal.h> when the system
  1349. # doesn't have a complete one.
  1350. signal.h: signal.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  1351. $(AM_V_GEN)rm -f $@-t $@ && \
  1352. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  1353. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1354. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1355. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1356. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1357. -e 's|@''NEXT_SIGNAL_H''@|$(NEXT_SIGNAL_H)|g' \
  1358. -e 's|@''GNULIB_PTHREAD_SIGMASK''@|$(GNULIB_PTHREAD_SIGMASK)|g' \
  1359. -e 's|@''GNULIB_RAISE''@|$(GNULIB_RAISE)|g' \
  1360. -e 's/@''GNULIB_SIGNAL_H_SIGPIPE''@/$(GNULIB_SIGNAL_H_SIGPIPE)/g' \
  1361. -e 's/@''GNULIB_SIGPROCMASK''@/$(GNULIB_SIGPROCMASK)/g' \
  1362. -e 's/@''GNULIB_SIGACTION''@/$(GNULIB_SIGACTION)/g' \
  1363. -e 's|@''HAVE_POSIX_SIGNALBLOCKING''@|$(HAVE_POSIX_SIGNALBLOCKING)|g' \
  1364. -e 's|@''HAVE_PTHREAD_SIGMASK''@|$(HAVE_PTHREAD_SIGMASK)|g' \
  1365. -e 's|@''HAVE_RAISE''@|$(HAVE_RAISE)|g' \
  1366. -e 's|@''HAVE_SIGSET_T''@|$(HAVE_SIGSET_T)|g' \
  1367. -e 's|@''HAVE_SIGINFO_T''@|$(HAVE_SIGINFO_T)|g' \
  1368. -e 's|@''HAVE_SIGACTION''@|$(HAVE_SIGACTION)|g' \
  1369. -e 's|@''HAVE_STRUCT_SIGACTION_SA_SIGACTION''@|$(HAVE_STRUCT_SIGACTION_SA_SIGACTION)|g' \
  1370. -e 's|@''HAVE_TYPE_VOLATILE_SIG_ATOMIC_T''@|$(HAVE_TYPE_VOLATILE_SIG_ATOMIC_T)|g' \
  1371. -e 's|@''HAVE_SIGHANDLER_T''@|$(HAVE_SIGHANDLER_T)|g' \
  1372. -e 's|@''REPLACE_PTHREAD_SIGMASK''@|$(REPLACE_PTHREAD_SIGMASK)|g' \
  1373. -e 's|@''REPLACE_RAISE''@|$(REPLACE_RAISE)|g' \
  1374. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1375. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  1376. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  1377. < $(srcdir)/signal.in.h; \
  1378. } > $@-t && \
  1379. mv $@-t $@
  1380. MOSTLYCLEANFILES += signal.h signal.h-t
  1381. EXTRA_DIST += signal.in.h
  1382. ## end gnulib module signal-h
  1383. ## begin gnulib module signbit
  1384. if gl_GNULIB_ENABLED_signbit
  1385. endif
  1386. EXTRA_DIST += float+.h signbitd.c signbitf.c signbitl.c
  1387. EXTRA_libgnu_la_SOURCES += signbitd.c signbitf.c signbitl.c
  1388. ## end gnulib module signbit
  1389. ## begin gnulib module size_max
  1390. if gl_GNULIB_ENABLED_size_max
  1391. libgnu_la_SOURCES += size_max.h
  1392. endif
  1393. ## end gnulib module size_max
  1394. ## begin gnulib module snippet/_Noreturn
  1395. # Because this Makefile snippet defines a variable used by other
  1396. # gnulib Makefile snippets, it must be present in all Makefile.am that
  1397. # need it. This is ensured by the applicability 'all' defined above.
  1398. _NORETURN_H=$(top_srcdir)/build-aux/snippet/_Noreturn.h
  1399. EXTRA_DIST += $(top_srcdir)/build-aux/snippet/_Noreturn.h
  1400. ## end gnulib module snippet/_Noreturn
  1401. ## begin gnulib module snippet/arg-nonnull
  1402. # The BUILT_SOURCES created by this Makefile snippet are not used via #include
  1403. # statements but through direct file reference. Therefore this snippet must be
  1404. # present in all Makefile.am that need it. This is ensured by the applicability
  1405. # 'all' defined above.
  1406. BUILT_SOURCES += arg-nonnull.h
  1407. # The arg-nonnull.h that gets inserted into generated .h files is the same as
  1408. # build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut
  1409. # off.
  1410. arg-nonnull.h: $(top_srcdir)/build-aux/snippet/arg-nonnull.h
  1411. $(AM_V_GEN)rm -f $@-t $@ && \
  1412. sed -n -e '/GL_ARG_NONNULL/,$$p' \
  1413. < $(top_srcdir)/build-aux/snippet/arg-nonnull.h \
  1414. > $@-t && \
  1415. mv $@-t $@
  1416. MOSTLYCLEANFILES += arg-nonnull.h arg-nonnull.h-t
  1417. ARG_NONNULL_H=arg-nonnull.h
  1418. EXTRA_DIST += $(top_srcdir)/build-aux/snippet/arg-nonnull.h
  1419. ## end gnulib module snippet/arg-nonnull
  1420. ## begin gnulib module snippet/c++defs
  1421. # The BUILT_SOURCES created by this Makefile snippet are not used via #include
  1422. # statements but through direct file reference. Therefore this snippet must be
  1423. # present in all Makefile.am that need it. This is ensured by the applicability
  1424. # 'all' defined above.
  1425. BUILT_SOURCES += c++defs.h
  1426. # The c++defs.h that gets inserted into generated .h files is the same as
  1427. # build-aux/snippet/c++defs.h, except that it has the copyright header cut off.
  1428. c++defs.h: $(top_srcdir)/build-aux/snippet/c++defs.h
  1429. $(AM_V_GEN)rm -f $@-t $@ && \
  1430. sed -n -e '/_GL_CXXDEFS/,$$p' \
  1431. < $(top_srcdir)/build-aux/snippet/c++defs.h \
  1432. > $@-t && \
  1433. mv $@-t $@
  1434. MOSTLYCLEANFILES += c++defs.h c++defs.h-t
  1435. CXXDEFS_H=c++defs.h
  1436. EXTRA_DIST += $(top_srcdir)/build-aux/snippet/c++defs.h
  1437. ## end gnulib module snippet/c++defs
  1438. ## begin gnulib module snippet/warn-on-use
  1439. BUILT_SOURCES += warn-on-use.h
  1440. # The warn-on-use.h that gets inserted into generated .h files is the same as
  1441. # build-aux/snippet/warn-on-use.h, except that it has the copyright header cut
  1442. # off.
  1443. warn-on-use.h: $(top_srcdir)/build-aux/snippet/warn-on-use.h
  1444. $(AM_V_GEN)rm -f $@-t $@ && \
  1445. sed -n -e '/^.ifndef/,$$p' \
  1446. < $(top_srcdir)/build-aux/snippet/warn-on-use.h \
  1447. > $@-t && \
  1448. mv $@-t $@
  1449. MOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t
  1450. WARN_ON_USE_H=warn-on-use.h
  1451. EXTRA_DIST += $(top_srcdir)/build-aux/snippet/warn-on-use.h
  1452. ## end gnulib module snippet/warn-on-use
  1453. ## begin gnulib module snprintf
  1454. if gl_GNULIB_ENABLED_snprintf
  1455. endif
  1456. EXTRA_DIST += snprintf.c
  1457. EXTRA_libgnu_la_SOURCES += snprintf.c
  1458. ## end gnulib module snprintf
  1459. ## begin gnulib module socket
  1460. EXTRA_DIST += socket.c w32sock.h
  1461. EXTRA_libgnu_la_SOURCES += socket.c
  1462. ## end gnulib module socket
  1463. ## begin gnulib module sockets
  1464. if gl_GNULIB_ENABLED_sockets
  1465. libgnu_la_SOURCES += sockets.h sockets.c
  1466. endif
  1467. EXTRA_DIST += w32sock.h
  1468. ## end gnulib module sockets
  1469. ## begin gnulib module stat
  1470. if gl_GNULIB_ENABLED_stat
  1471. endif
  1472. EXTRA_DIST += stat.c
  1473. EXTRA_libgnu_la_SOURCES += stat.c
  1474. ## end gnulib module stat
  1475. ## begin gnulib module stat-time
  1476. libgnu_la_SOURCES += stat-time.c
  1477. EXTRA_DIST += stat-time.h
  1478. ## end gnulib module stat-time
  1479. ## begin gnulib module stdalign
  1480. BUILT_SOURCES += $(STDALIGN_H)
  1481. # We need the following in order to create <stdalign.h> when the system
  1482. # doesn't have one that works.
  1483. if GL_GENERATE_STDALIGN_H
  1484. stdalign.h: stdalign.in.h $(top_builddir)/config.status
  1485. $(AM_V_GEN)rm -f $@-t $@ && \
  1486. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1487. cat $(srcdir)/stdalign.in.h; \
  1488. } > $@-t && \
  1489. mv $@-t $@
  1490. else
  1491. stdalign.h: $(top_builddir)/config.status
  1492. rm -f $@
  1493. endif
  1494. MOSTLYCLEANFILES += stdalign.h stdalign.h-t
  1495. EXTRA_DIST += stdalign.in.h
  1496. ## end gnulib module stdalign
  1497. ## begin gnulib module stdbool
  1498. BUILT_SOURCES += $(STDBOOL_H)
  1499. # We need the following in order to create <stdbool.h> when the system
  1500. # doesn't have one that works.
  1501. if GL_GENERATE_STDBOOL_H
  1502. stdbool.h: stdbool.in.h $(top_builddir)/config.status
  1503. $(AM_V_GEN)rm -f $@-t $@ && \
  1504. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1505. sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \
  1506. } > $@-t && \
  1507. mv $@-t $@
  1508. else
  1509. stdbool.h: $(top_builddir)/config.status
  1510. rm -f $@
  1511. endif
  1512. MOSTLYCLEANFILES += stdbool.h stdbool.h-t
  1513. EXTRA_DIST += stdbool.in.h
  1514. ## end gnulib module stdbool
  1515. ## begin gnulib module stddef
  1516. BUILT_SOURCES += $(STDDEF_H)
  1517. # We need the following in order to create <stddef.h> when the system
  1518. # doesn't have one that works with the given compiler.
  1519. if GL_GENERATE_STDDEF_H
  1520. stddef.h: stddef.in.h $(top_builddir)/config.status
  1521. $(AM_V_GEN)rm -f $@-t $@ && \
  1522. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  1523. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1524. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1525. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1526. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1527. -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \
  1528. -e 's|@''HAVE_MAX_ALIGN_T''@|$(HAVE_MAX_ALIGN_T)|g' \
  1529. -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \
  1530. -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \
  1531. < $(srcdir)/stddef.in.h; \
  1532. } > $@-t && \
  1533. mv $@-t $@
  1534. else
  1535. stddef.h: $(top_builddir)/config.status
  1536. rm -f $@
  1537. endif
  1538. MOSTLYCLEANFILES += stddef.h stddef.h-t
  1539. EXTRA_DIST += stddef.in.h
  1540. ## end gnulib module stddef
  1541. ## begin gnulib module stdint
  1542. BUILT_SOURCES += $(STDINT_H)
  1543. # We need the following in order to create <stdint.h> when the system
  1544. # doesn't have one that works with the given compiler.
  1545. if GL_GENERATE_STDINT_H
  1546. stdint.h: stdint.in.h $(top_builddir)/config.status
  1547. $(AM_V_GEN)rm -f $@-t $@ && \
  1548. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1549. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1550. -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \
  1551. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1552. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1553. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1554. -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \
  1555. -e 's/@''HAVE_C99_STDINT_H''@/$(HAVE_C99_STDINT_H)/g' \
  1556. -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \
  1557. -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \
  1558. -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \
  1559. -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \
  1560. -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \
  1561. -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \
  1562. -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \
  1563. -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \
  1564. -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \
  1565. -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \
  1566. -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \
  1567. -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \
  1568. -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \
  1569. -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \
  1570. -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \
  1571. -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \
  1572. -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \
  1573. -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \
  1574. -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \
  1575. -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \
  1576. -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \
  1577. -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \
  1578. < $(srcdir)/stdint.in.h; \
  1579. } > $@-t && \
  1580. mv $@-t $@
  1581. else
  1582. stdint.h: $(top_builddir)/config.status
  1583. rm -f $@
  1584. endif
  1585. MOSTLYCLEANFILES += stdint.h stdint.h-t
  1586. EXTRA_DIST += stdint.in.h
  1587. ## end gnulib module stdint
  1588. ## begin gnulib module stdio
  1589. BUILT_SOURCES += stdio.h
  1590. # We need the following in order to create <stdio.h> when the system
  1591. # doesn't have one that works with the given compiler.
  1592. stdio.h: stdio.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  1593. $(AM_V_GEN)rm -f $@-t $@ && \
  1594. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  1595. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1596. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1597. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1598. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1599. -e 's|@''NEXT_STDIO_H''@|$(NEXT_STDIO_H)|g' \
  1600. -e 's/@''GNULIB_DPRINTF''@/$(GNULIB_DPRINTF)/g' \
  1601. -e 's/@''GNULIB_FCLOSE''@/$(GNULIB_FCLOSE)/g' \
  1602. -e 's/@''GNULIB_FDOPEN''@/$(GNULIB_FDOPEN)/g' \
  1603. -e 's/@''GNULIB_FFLUSH''@/$(GNULIB_FFLUSH)/g' \
  1604. -e 's/@''GNULIB_FGETC''@/$(GNULIB_FGETC)/g' \
  1605. -e 's/@''GNULIB_FGETS''@/$(GNULIB_FGETS)/g' \
  1606. -e 's/@''GNULIB_FOPEN''@/$(GNULIB_FOPEN)/g' \
  1607. -e 's/@''GNULIB_FPRINTF''@/$(GNULIB_FPRINTF)/g' \
  1608. -e 's/@''GNULIB_FPRINTF_POSIX''@/$(GNULIB_FPRINTF_POSIX)/g' \
  1609. -e 's/@''GNULIB_FPURGE''@/$(GNULIB_FPURGE)/g' \
  1610. -e 's/@''GNULIB_FPUTC''@/$(GNULIB_FPUTC)/g' \
  1611. -e 's/@''GNULIB_FPUTS''@/$(GNULIB_FPUTS)/g' \
  1612. -e 's/@''GNULIB_FREAD''@/$(GNULIB_FREAD)/g' \
  1613. -e 's/@''GNULIB_FREOPEN''@/$(GNULIB_FREOPEN)/g' \
  1614. -e 's/@''GNULIB_FSCANF''@/$(GNULIB_FSCANF)/g' \
  1615. -e 's/@''GNULIB_FSEEK''@/$(GNULIB_FSEEK)/g' \
  1616. -e 's/@''GNULIB_FSEEKO''@/$(GNULIB_FSEEKO)/g' \
  1617. -e 's/@''GNULIB_FTELL''@/$(GNULIB_FTELL)/g' \
  1618. -e 's/@''GNULIB_FTELLO''@/$(GNULIB_FTELLO)/g' \
  1619. -e 's/@''GNULIB_FWRITE''@/$(GNULIB_FWRITE)/g' \
  1620. -e 's/@''GNULIB_GETC''@/$(GNULIB_GETC)/g' \
  1621. -e 's/@''GNULIB_GETCHAR''@/$(GNULIB_GETCHAR)/g' \
  1622. -e 's/@''GNULIB_GETDELIM''@/$(GNULIB_GETDELIM)/g' \
  1623. -e 's/@''GNULIB_GETLINE''@/$(GNULIB_GETLINE)/g' \
  1624. -e 's/@''GNULIB_OBSTACK_PRINTF''@/$(GNULIB_OBSTACK_PRINTF)/g' \
  1625. -e 's/@''GNULIB_OBSTACK_PRINTF_POSIX''@/$(GNULIB_OBSTACK_PRINTF_POSIX)/g' \
  1626. -e 's/@''GNULIB_PCLOSE''@/$(GNULIB_PCLOSE)/g' \
  1627. -e 's/@''GNULIB_PERROR''@/$(GNULIB_PERROR)/g' \
  1628. -e 's/@''GNULIB_POPEN''@/$(GNULIB_POPEN)/g' \
  1629. -e 's/@''GNULIB_PRINTF''@/$(GNULIB_PRINTF)/g' \
  1630. -e 's/@''GNULIB_PRINTF_POSIX''@/$(GNULIB_PRINTF_POSIX)/g' \
  1631. -e 's/@''GNULIB_PUTC''@/$(GNULIB_PUTC)/g' \
  1632. -e 's/@''GNULIB_PUTCHAR''@/$(GNULIB_PUTCHAR)/g' \
  1633. -e 's/@''GNULIB_PUTS''@/$(GNULIB_PUTS)/g' \
  1634. -e 's/@''GNULIB_REMOVE''@/$(GNULIB_REMOVE)/g' \
  1635. -e 's/@''GNULIB_RENAME''@/$(GNULIB_RENAME)/g' \
  1636. -e 's/@''GNULIB_RENAMEAT''@/$(GNULIB_RENAMEAT)/g' \
  1637. -e 's/@''GNULIB_SCANF''@/$(GNULIB_SCANF)/g' \
  1638. -e 's/@''GNULIB_SNPRINTF''@/$(GNULIB_SNPRINTF)/g' \
  1639. -e 's/@''GNULIB_SPRINTF_POSIX''@/$(GNULIB_SPRINTF_POSIX)/g' \
  1640. -e 's/@''GNULIB_STDIO_H_NONBLOCKING''@/$(GNULIB_STDIO_H_NONBLOCKING)/g' \
  1641. -e 's/@''GNULIB_STDIO_H_SIGPIPE''@/$(GNULIB_STDIO_H_SIGPIPE)/g' \
  1642. -e 's/@''GNULIB_TMPFILE''@/$(GNULIB_TMPFILE)/g' \
  1643. -e 's/@''GNULIB_VASPRINTF''@/$(GNULIB_VASPRINTF)/g' \
  1644. -e 's/@''GNULIB_VDPRINTF''@/$(GNULIB_VDPRINTF)/g' \
  1645. -e 's/@''GNULIB_VFPRINTF''@/$(GNULIB_VFPRINTF)/g' \
  1646. -e 's/@''GNULIB_VFPRINTF_POSIX''@/$(GNULIB_VFPRINTF_POSIX)/g' \
  1647. -e 's/@''GNULIB_VFSCANF''@/$(GNULIB_VFSCANF)/g' \
  1648. -e 's/@''GNULIB_VSCANF''@/$(GNULIB_VSCANF)/g' \
  1649. -e 's/@''GNULIB_VPRINTF''@/$(GNULIB_VPRINTF)/g' \
  1650. -e 's/@''GNULIB_VPRINTF_POSIX''@/$(GNULIB_VPRINTF_POSIX)/g' \
  1651. -e 's/@''GNULIB_VSNPRINTF''@/$(GNULIB_VSNPRINTF)/g' \
  1652. -e 's/@''GNULIB_VSPRINTF_POSIX''@/$(GNULIB_VSPRINTF_POSIX)/g' \
  1653. < $(srcdir)/stdio.in.h | \
  1654. sed -e 's|@''HAVE_DECL_FPURGE''@|$(HAVE_DECL_FPURGE)|g' \
  1655. -e 's|@''HAVE_DECL_FSEEKO''@|$(HAVE_DECL_FSEEKO)|g' \
  1656. -e 's|@''HAVE_DECL_FTELLO''@|$(HAVE_DECL_FTELLO)|g' \
  1657. -e 's|@''HAVE_DECL_GETDELIM''@|$(HAVE_DECL_GETDELIM)|g' \
  1658. -e 's|@''HAVE_DECL_GETLINE''@|$(HAVE_DECL_GETLINE)|g' \
  1659. -e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|$(HAVE_DECL_OBSTACK_PRINTF)|g' \
  1660. -e 's|@''HAVE_DECL_SNPRINTF''@|$(HAVE_DECL_SNPRINTF)|g' \
  1661. -e 's|@''HAVE_DECL_VSNPRINTF''@|$(HAVE_DECL_VSNPRINTF)|g' \
  1662. -e 's|@''HAVE_DPRINTF''@|$(HAVE_DPRINTF)|g' \
  1663. -e 's|@''HAVE_FSEEKO''@|$(HAVE_FSEEKO)|g' \
  1664. -e 's|@''HAVE_FTELLO''@|$(HAVE_FTELLO)|g' \
  1665. -e 's|@''HAVE_PCLOSE''@|$(HAVE_PCLOSE)|g' \
  1666. -e 's|@''HAVE_POPEN''@|$(HAVE_POPEN)|g' \
  1667. -e 's|@''HAVE_RENAMEAT''@|$(HAVE_RENAMEAT)|g' \
  1668. -e 's|@''HAVE_VASPRINTF''@|$(HAVE_VASPRINTF)|g' \
  1669. -e 's|@''HAVE_VDPRINTF''@|$(HAVE_VDPRINTF)|g' \
  1670. -e 's|@''REPLACE_DPRINTF''@|$(REPLACE_DPRINTF)|g' \
  1671. -e 's|@''REPLACE_FCLOSE''@|$(REPLACE_FCLOSE)|g' \
  1672. -e 's|@''REPLACE_FDOPEN''@|$(REPLACE_FDOPEN)|g' \
  1673. -e 's|@''REPLACE_FFLUSH''@|$(REPLACE_FFLUSH)|g' \
  1674. -e 's|@''REPLACE_FOPEN''@|$(REPLACE_FOPEN)|g' \
  1675. -e 's|@''REPLACE_FPRINTF''@|$(REPLACE_FPRINTF)|g' \
  1676. -e 's|@''REPLACE_FPURGE''@|$(REPLACE_FPURGE)|g' \
  1677. -e 's|@''REPLACE_FREOPEN''@|$(REPLACE_FREOPEN)|g' \
  1678. -e 's|@''REPLACE_FSEEK''@|$(REPLACE_FSEEK)|g' \
  1679. -e 's|@''REPLACE_FSEEKO''@|$(REPLACE_FSEEKO)|g' \
  1680. -e 's|@''REPLACE_FTELL''@|$(REPLACE_FTELL)|g' \
  1681. -e 's|@''REPLACE_FTELLO''@|$(REPLACE_FTELLO)|g' \
  1682. -e 's|@''REPLACE_GETDELIM''@|$(REPLACE_GETDELIM)|g' \
  1683. -e 's|@''REPLACE_GETLINE''@|$(REPLACE_GETLINE)|g' \
  1684. -e 's|@''REPLACE_OBSTACK_PRINTF''@|$(REPLACE_OBSTACK_PRINTF)|g' \
  1685. -e 's|@''REPLACE_PERROR''@|$(REPLACE_PERROR)|g' \
  1686. -e 's|@''REPLACE_POPEN''@|$(REPLACE_POPEN)|g' \
  1687. -e 's|@''REPLACE_PRINTF''@|$(REPLACE_PRINTF)|g' \
  1688. -e 's|@''REPLACE_REMOVE''@|$(REPLACE_REMOVE)|g' \
  1689. -e 's|@''REPLACE_RENAME''@|$(REPLACE_RENAME)|g' \
  1690. -e 's|@''REPLACE_RENAMEAT''@|$(REPLACE_RENAMEAT)|g' \
  1691. -e 's|@''REPLACE_SNPRINTF''@|$(REPLACE_SNPRINTF)|g' \
  1692. -e 's|@''REPLACE_SPRINTF''@|$(REPLACE_SPRINTF)|g' \
  1693. -e 's|@''REPLACE_STDIO_READ_FUNCS''@|$(REPLACE_STDIO_READ_FUNCS)|g' \
  1694. -e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|$(REPLACE_STDIO_WRITE_FUNCS)|g' \
  1695. -e 's|@''REPLACE_TMPFILE''@|$(REPLACE_TMPFILE)|g' \
  1696. -e 's|@''REPLACE_VASPRINTF''@|$(REPLACE_VASPRINTF)|g' \
  1697. -e 's|@''REPLACE_VDPRINTF''@|$(REPLACE_VDPRINTF)|g' \
  1698. -e 's|@''REPLACE_VFPRINTF''@|$(REPLACE_VFPRINTF)|g' \
  1699. -e 's|@''REPLACE_VPRINTF''@|$(REPLACE_VPRINTF)|g' \
  1700. -e 's|@''REPLACE_VSNPRINTF''@|$(REPLACE_VSNPRINTF)|g' \
  1701. -e 's|@''REPLACE_VSPRINTF''@|$(REPLACE_VSPRINTF)|g' \
  1702. -e 's|@''ASM_SYMBOL_PREFIX''@|$(ASM_SYMBOL_PREFIX)|g' \
  1703. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1704. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  1705. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
  1706. } > $@-t && \
  1707. mv $@-t $@
  1708. MOSTLYCLEANFILES += stdio.h stdio.h-t
  1709. EXTRA_DIST += stdio.in.h
  1710. ## end gnulib module stdio
  1711. ## begin gnulib module stdlib
  1712. BUILT_SOURCES += stdlib.h
  1713. # We need the following in order to create <stdlib.h> when the system
  1714. # doesn't have one that works with the given compiler.
  1715. stdlib.h: stdlib.in.h $(top_builddir)/config.status $(CXXDEFS_H) \
  1716. $(_NORETURN_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  1717. $(AM_V_GEN)rm -f $@-t $@ && \
  1718. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  1719. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1720. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1721. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1722. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1723. -e 's|@''NEXT_STDLIB_H''@|$(NEXT_STDLIB_H)|g' \
  1724. -e 's/@''GNULIB__EXIT''@/$(GNULIB__EXIT)/g' \
  1725. -e 's/@''GNULIB_ATOLL''@/$(GNULIB_ATOLL)/g' \
  1726. -e 's/@''GNULIB_CALLOC_POSIX''@/$(GNULIB_CALLOC_POSIX)/g' \
  1727. -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/$(GNULIB_CANONICALIZE_FILE_NAME)/g' \
  1728. -e 's/@''GNULIB_GETLOADAVG''@/$(GNULIB_GETLOADAVG)/g' \
  1729. -e 's/@''GNULIB_GETSUBOPT''@/$(GNULIB_GETSUBOPT)/g' \
  1730. -e 's/@''GNULIB_GRANTPT''@/$(GNULIB_GRANTPT)/g' \
  1731. -e 's/@''GNULIB_MALLOC_POSIX''@/$(GNULIB_MALLOC_POSIX)/g' \
  1732. -e 's/@''GNULIB_MBTOWC''@/$(GNULIB_MBTOWC)/g' \
  1733. -e 's/@''GNULIB_MKDTEMP''@/$(GNULIB_MKDTEMP)/g' \
  1734. -e 's/@''GNULIB_MKOSTEMP''@/$(GNULIB_MKOSTEMP)/g' \
  1735. -e 's/@''GNULIB_MKOSTEMPS''@/$(GNULIB_MKOSTEMPS)/g' \
  1736. -e 's/@''GNULIB_MKSTEMP''@/$(GNULIB_MKSTEMP)/g' \
  1737. -e 's/@''GNULIB_MKSTEMPS''@/$(GNULIB_MKSTEMPS)/g' \
  1738. -e 's/@''GNULIB_POSIX_OPENPT''@/$(GNULIB_POSIX_OPENPT)/g' \
  1739. -e 's/@''GNULIB_PTSNAME''@/$(GNULIB_PTSNAME)/g' \
  1740. -e 's/@''GNULIB_PTSNAME_R''@/$(GNULIB_PTSNAME_R)/g' \
  1741. -e 's/@''GNULIB_PUTENV''@/$(GNULIB_PUTENV)/g' \
  1742. -e 's/@''GNULIB_QSORT_R''@/$(GNULIB_QSORT_R)/g' \
  1743. -e 's/@''GNULIB_RANDOM''@/$(GNULIB_RANDOM)/g' \
  1744. -e 's/@''GNULIB_RANDOM_R''@/$(GNULIB_RANDOM_R)/g' \
  1745. -e 's/@''GNULIB_REALLOC_POSIX''@/$(GNULIB_REALLOC_POSIX)/g' \
  1746. -e 's/@''GNULIB_REALPATH''@/$(GNULIB_REALPATH)/g' \
  1747. -e 's/@''GNULIB_RPMATCH''@/$(GNULIB_RPMATCH)/g' \
  1748. -e 's/@''GNULIB_SECURE_GETENV''@/$(GNULIB_SECURE_GETENV)/g' \
  1749. -e 's/@''GNULIB_SETENV''@/$(GNULIB_SETENV)/g' \
  1750. -e 's/@''GNULIB_STRTOD''@/$(GNULIB_STRTOD)/g' \
  1751. -e 's/@''GNULIB_STRTOLL''@/$(GNULIB_STRTOLL)/g' \
  1752. -e 's/@''GNULIB_STRTOULL''@/$(GNULIB_STRTOULL)/g' \
  1753. -e 's/@''GNULIB_SYSTEM_POSIX''@/$(GNULIB_SYSTEM_POSIX)/g' \
  1754. -e 's/@''GNULIB_UNLOCKPT''@/$(GNULIB_UNLOCKPT)/g' \
  1755. -e 's/@''GNULIB_UNSETENV''@/$(GNULIB_UNSETENV)/g' \
  1756. -e 's/@''GNULIB_WCTOMB''@/$(GNULIB_WCTOMB)/g' \
  1757. < $(srcdir)/stdlib.in.h | \
  1758. sed -e 's|@''HAVE__EXIT''@|$(HAVE__EXIT)|g' \
  1759. -e 's|@''HAVE_ATOLL''@|$(HAVE_ATOLL)|g' \
  1760. -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|$(HAVE_CANONICALIZE_FILE_NAME)|g' \
  1761. -e 's|@''HAVE_DECL_GETLOADAVG''@|$(HAVE_DECL_GETLOADAVG)|g' \
  1762. -e 's|@''HAVE_GETSUBOPT''@|$(HAVE_GETSUBOPT)|g' \
  1763. -e 's|@''HAVE_GRANTPT''@|$(HAVE_GRANTPT)|g' \
  1764. -e 's|@''HAVE_MKDTEMP''@|$(HAVE_MKDTEMP)|g' \
  1765. -e 's|@''HAVE_MKOSTEMP''@|$(HAVE_MKOSTEMP)|g' \
  1766. -e 's|@''HAVE_MKOSTEMPS''@|$(HAVE_MKOSTEMPS)|g' \
  1767. -e 's|@''HAVE_MKSTEMP''@|$(HAVE_MKSTEMP)|g' \
  1768. -e 's|@''HAVE_MKSTEMPS''@|$(HAVE_MKSTEMPS)|g' \
  1769. -e 's|@''HAVE_POSIX_OPENPT''@|$(HAVE_POSIX_OPENPT)|g' \
  1770. -e 's|@''HAVE_PTSNAME''@|$(HAVE_PTSNAME)|g' \
  1771. -e 's|@''HAVE_PTSNAME_R''@|$(HAVE_PTSNAME_R)|g' \
  1772. -e 's|@''HAVE_QSORT_R''@|$(HAVE_QSORT_R)|g' \
  1773. -e 's|@''HAVE_RANDOM''@|$(HAVE_RANDOM)|g' \
  1774. -e 's|@''HAVE_RANDOM_H''@|$(HAVE_RANDOM_H)|g' \
  1775. -e 's|@''HAVE_RANDOM_R''@|$(HAVE_RANDOM_R)|g' \
  1776. -e 's|@''HAVE_REALPATH''@|$(HAVE_REALPATH)|g' \
  1777. -e 's|@''HAVE_RPMATCH''@|$(HAVE_RPMATCH)|g' \
  1778. -e 's|@''HAVE_SECURE_GETENV''@|$(HAVE_SECURE_GETENV)|g' \
  1779. -e 's|@''HAVE_DECL_SETENV''@|$(HAVE_DECL_SETENV)|g' \
  1780. -e 's|@''HAVE_STRTOD''@|$(HAVE_STRTOD)|g' \
  1781. -e 's|@''HAVE_STRTOLL''@|$(HAVE_STRTOLL)|g' \
  1782. -e 's|@''HAVE_STRTOULL''@|$(HAVE_STRTOULL)|g' \
  1783. -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|$(HAVE_STRUCT_RANDOM_DATA)|g' \
  1784. -e 's|@''HAVE_SYS_LOADAVG_H''@|$(HAVE_SYS_LOADAVG_H)|g' \
  1785. -e 's|@''HAVE_UNLOCKPT''@|$(HAVE_UNLOCKPT)|g' \
  1786. -e 's|@''HAVE_DECL_UNSETENV''@|$(HAVE_DECL_UNSETENV)|g' \
  1787. -e 's|@''REPLACE_CALLOC''@|$(REPLACE_CALLOC)|g' \
  1788. -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|$(REPLACE_CANONICALIZE_FILE_NAME)|g' \
  1789. -e 's|@''REPLACE_MALLOC''@|$(REPLACE_MALLOC)|g' \
  1790. -e 's|@''REPLACE_MBTOWC''@|$(REPLACE_MBTOWC)|g' \
  1791. -e 's|@''REPLACE_MKSTEMP''@|$(REPLACE_MKSTEMP)|g' \
  1792. -e 's|@''REPLACE_PTSNAME''@|$(REPLACE_PTSNAME)|g' \
  1793. -e 's|@''REPLACE_PTSNAME_R''@|$(REPLACE_PTSNAME_R)|g' \
  1794. -e 's|@''REPLACE_PUTENV''@|$(REPLACE_PUTENV)|g' \
  1795. -e 's|@''REPLACE_QSORT_R''@|$(REPLACE_QSORT_R)|g' \
  1796. -e 's|@''REPLACE_RANDOM_R''@|$(REPLACE_RANDOM_R)|g' \
  1797. -e 's|@''REPLACE_REALLOC''@|$(REPLACE_REALLOC)|g' \
  1798. -e 's|@''REPLACE_REALPATH''@|$(REPLACE_REALPATH)|g' \
  1799. -e 's|@''REPLACE_SETENV''@|$(REPLACE_SETENV)|g' \
  1800. -e 's|@''REPLACE_STRTOD''@|$(REPLACE_STRTOD)|g' \
  1801. -e 's|@''REPLACE_UNSETENV''@|$(REPLACE_UNSETENV)|g' \
  1802. -e 's|@''REPLACE_WCTOMB''@|$(REPLACE_WCTOMB)|g' \
  1803. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1804. -e '/definition of _Noreturn/r $(_NORETURN_H)' \
  1805. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  1806. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
  1807. } > $@-t && \
  1808. mv $@-t $@
  1809. MOSTLYCLEANFILES += stdlib.h stdlib.h-t
  1810. EXTRA_DIST += stdlib.in.h
  1811. ## end gnulib module stdlib
  1812. ## begin gnulib module strdup-posix
  1813. if gl_GNULIB_ENABLED_f9850631dca91859e9cddac9359921c0
  1814. endif
  1815. EXTRA_DIST += strdup.c
  1816. EXTRA_libgnu_la_SOURCES += strdup.c
  1817. ## end gnulib module strdup-posix
  1818. ## begin gnulib module streq
  1819. if gl_GNULIB_ENABLED_streq
  1820. endif
  1821. EXTRA_DIST += streq.h
  1822. ## end gnulib module streq
  1823. ## begin gnulib module strftime
  1824. libgnu_la_SOURCES += strftime.c
  1825. EXTRA_DIST += strftime.h
  1826. ## end gnulib module strftime
  1827. ## begin gnulib module striconveh
  1828. libgnu_la_SOURCES += striconveh.h striconveh.c
  1829. if GL_COND_LIBTOOL
  1830. libgnu_la_LDFLAGS += $(LTLIBICONV)
  1831. endif
  1832. EXTRA_DIST += iconveh.h
  1833. ## end gnulib module striconveh
  1834. ## begin gnulib module string
  1835. BUILT_SOURCES += string.h
  1836. # We need the following in order to create <string.h> when the system
  1837. # doesn't have one that works with the given compiler.
  1838. string.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  1839. $(AM_V_GEN)rm -f $@-t $@ && \
  1840. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  1841. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1842. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1843. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1844. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1845. -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \
  1846. -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \
  1847. -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \
  1848. -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \
  1849. -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \
  1850. -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \
  1851. -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \
  1852. -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \
  1853. -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \
  1854. -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \
  1855. -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \
  1856. -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \
  1857. -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \
  1858. -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \
  1859. -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \
  1860. -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \
  1861. -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \
  1862. -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \
  1863. -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \
  1864. -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \
  1865. -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \
  1866. -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \
  1867. -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \
  1868. -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \
  1869. -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \
  1870. -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \
  1871. -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \
  1872. -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \
  1873. -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \
  1874. -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \
  1875. -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \
  1876. -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \
  1877. -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \
  1878. -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \
  1879. -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \
  1880. -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \
  1881. -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \
  1882. -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \
  1883. < $(srcdir)/string.in.h | \
  1884. sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \
  1885. -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \
  1886. -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \
  1887. -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \
  1888. -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \
  1889. -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \
  1890. -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \
  1891. -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \
  1892. -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \
  1893. -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \
  1894. -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \
  1895. -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \
  1896. -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \
  1897. -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \
  1898. -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \
  1899. -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \
  1900. -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \
  1901. -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \
  1902. -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \
  1903. -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \
  1904. -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \
  1905. -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \
  1906. -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \
  1907. -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \
  1908. -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \
  1909. -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \
  1910. -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \
  1911. -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \
  1912. -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \
  1913. -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \
  1914. -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \
  1915. -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \
  1916. -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \
  1917. -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \
  1918. -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \
  1919. -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \
  1920. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1921. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  1922. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
  1923. < $(srcdir)/string.in.h; \
  1924. } > $@-t && \
  1925. mv $@-t $@
  1926. MOSTLYCLEANFILES += string.h string.h-t
  1927. EXTRA_DIST += string.in.h
  1928. ## end gnulib module string
  1929. ## begin gnulib module sys_file
  1930. BUILT_SOURCES += sys/file.h
  1931. # We need the following in order to create <sys/file.h> when the system
  1932. # has one that is incomplete.
  1933. sys/file.h: sys_file.in.h $(top_builddir)/config.status $(WARN_ON_USE_H)
  1934. $(AM_V_at)$(MKDIR_P) sys
  1935. $(AM_V_GEN)rm -f $@-t $@ && \
  1936. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1937. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1938. -e 's/@''HAVE_SYS_FILE_H''@/$(HAVE_SYS_FILE_H)/g' \
  1939. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1940. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1941. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1942. -e 's|@''NEXT_SYS_FILE_H''@|$(NEXT_SYS_FILE_H)|g' \
  1943. -e 's/@''HAVE_FLOCK''@/$(HAVE_FLOCK)/g' \
  1944. -e 's/@''GNULIB_FLOCK''@/$(GNULIB_FLOCK)/g' \
  1945. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  1946. < $(srcdir)/sys_file.in.h; \
  1947. } > $@-t && \
  1948. mv $@-t $@
  1949. MOSTLYCLEANFILES += sys/file.h sys/file.h-t
  1950. MOSTLYCLEANDIRS += sys
  1951. EXTRA_DIST += sys_file.in.h
  1952. ## end gnulib module sys_file
  1953. ## begin gnulib module sys_select
  1954. BUILT_SOURCES += sys/select.h
  1955. # We need the following in order to create <sys/select.h> when the system
  1956. # doesn't have one that works with the given compiler.
  1957. sys/select.h: sys_select.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
  1958. $(AM_V_at)$(MKDIR_P) sys
  1959. $(AM_V_GEN)rm -f $@-t $@ && \
  1960. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1961. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1962. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1963. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1964. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1965. -e 's|@''NEXT_SYS_SELECT_H''@|$(NEXT_SYS_SELECT_H)|g' \
  1966. -e 's|@''HAVE_SYS_SELECT_H''@|$(HAVE_SYS_SELECT_H)|g' \
  1967. -e 's/@''GNULIB_PSELECT''@/$(GNULIB_PSELECT)/g' \
  1968. -e 's/@''GNULIB_SELECT''@/$(GNULIB_SELECT)/g' \
  1969. -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \
  1970. -e 's|@''HAVE_PSELECT''@|$(HAVE_PSELECT)|g' \
  1971. -e 's|@''REPLACE_PSELECT''@|$(REPLACE_PSELECT)|g' \
  1972. -e 's|@''REPLACE_SELECT''@|$(REPLACE_SELECT)|g' \
  1973. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  1974. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  1975. < $(srcdir)/sys_select.in.h; \
  1976. } > $@-t && \
  1977. mv $@-t $@
  1978. MOSTLYCLEANFILES += sys/select.h sys/select.h-t
  1979. MOSTLYCLEANDIRS += sys
  1980. EXTRA_DIST += sys_select.in.h
  1981. ## end gnulib module sys_select
  1982. ## begin gnulib module sys_socket
  1983. BUILT_SOURCES += sys/socket.h
  1984. libgnu_la_SOURCES += sys_socket.c
  1985. # We need the following in order to create <sys/socket.h> when the system
  1986. # doesn't have one that works with the given compiler.
  1987. sys/socket.h: sys_socket.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H) $(ARG_NONNULL_H)
  1988. $(AM_V_at)$(MKDIR_P) sys
  1989. $(AM_V_GEN)rm -f $@-t $@ && \
  1990. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  1991. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  1992. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  1993. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  1994. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  1995. -e 's|@''NEXT_SYS_SOCKET_H''@|$(NEXT_SYS_SOCKET_H)|g' \
  1996. -e 's|@''HAVE_SYS_SOCKET_H''@|$(HAVE_SYS_SOCKET_H)|g' \
  1997. -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \
  1998. -e 's/@''GNULIB_SOCKET''@/$(GNULIB_SOCKET)/g' \
  1999. -e 's/@''GNULIB_CONNECT''@/$(GNULIB_CONNECT)/g' \
  2000. -e 's/@''GNULIB_ACCEPT''@/$(GNULIB_ACCEPT)/g' \
  2001. -e 's/@''GNULIB_BIND''@/$(GNULIB_BIND)/g' \
  2002. -e 's/@''GNULIB_GETPEERNAME''@/$(GNULIB_GETPEERNAME)/g' \
  2003. -e 's/@''GNULIB_GETSOCKNAME''@/$(GNULIB_GETSOCKNAME)/g' \
  2004. -e 's/@''GNULIB_GETSOCKOPT''@/$(GNULIB_GETSOCKOPT)/g' \
  2005. -e 's/@''GNULIB_LISTEN''@/$(GNULIB_LISTEN)/g' \
  2006. -e 's/@''GNULIB_RECV''@/$(GNULIB_RECV)/g' \
  2007. -e 's/@''GNULIB_SEND''@/$(GNULIB_SEND)/g' \
  2008. -e 's/@''GNULIB_RECVFROM''@/$(GNULIB_RECVFROM)/g' \
  2009. -e 's/@''GNULIB_SENDTO''@/$(GNULIB_SENDTO)/g' \
  2010. -e 's/@''GNULIB_SETSOCKOPT''@/$(GNULIB_SETSOCKOPT)/g' \
  2011. -e 's/@''GNULIB_SHUTDOWN''@/$(GNULIB_SHUTDOWN)/g' \
  2012. -e 's/@''GNULIB_ACCEPT4''@/$(GNULIB_ACCEPT4)/g' \
  2013. -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \
  2014. -e 's|@''HAVE_WS2TCPIP_H''@|$(HAVE_WS2TCPIP_H)|g' \
  2015. -e 's|@''HAVE_STRUCT_SOCKADDR_STORAGE''@|$(HAVE_STRUCT_SOCKADDR_STORAGE)|g' \
  2016. -e 's|@''HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY''@|$(HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY)|g' \
  2017. -e 's|@''HAVE_SA_FAMILY_T''@|$(HAVE_SA_FAMILY_T)|g' \
  2018. -e 's|@''HAVE_ACCEPT4''@|$(HAVE_ACCEPT4)|g' \
  2019. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2020. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2021. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  2022. < $(srcdir)/sys_socket.in.h; \
  2023. } > $@-t && \
  2024. mv -f $@-t $@
  2025. MOSTLYCLEANFILES += sys/socket.h sys/socket.h-t
  2026. MOSTLYCLEANDIRS += sys
  2027. EXTRA_DIST += sys_socket.in.h
  2028. ## end gnulib module sys_socket
  2029. ## begin gnulib module sys_stat
  2030. BUILT_SOURCES += sys/stat.h
  2031. # We need the following in order to create <sys/stat.h> when the system
  2032. # has one that is incomplete.
  2033. sys/stat.h: sys_stat.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  2034. $(AM_V_at)$(MKDIR_P) sys
  2035. $(AM_V_GEN)rm -f $@-t $@ && \
  2036. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2037. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2038. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2039. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2040. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2041. -e 's|@''NEXT_SYS_STAT_H''@|$(NEXT_SYS_STAT_H)|g' \
  2042. -e 's|@''WINDOWS_64_BIT_ST_SIZE''@|$(WINDOWS_64_BIT_ST_SIZE)|g' \
  2043. -e 's/@''GNULIB_FCHMODAT''@/$(GNULIB_FCHMODAT)/g' \
  2044. -e 's/@''GNULIB_FSTAT''@/$(GNULIB_FSTAT)/g' \
  2045. -e 's/@''GNULIB_FSTATAT''@/$(GNULIB_FSTATAT)/g' \
  2046. -e 's/@''GNULIB_FUTIMENS''@/$(GNULIB_FUTIMENS)/g' \
  2047. -e 's/@''GNULIB_LCHMOD''@/$(GNULIB_LCHMOD)/g' \
  2048. -e 's/@''GNULIB_LSTAT''@/$(GNULIB_LSTAT)/g' \
  2049. -e 's/@''GNULIB_MKDIRAT''@/$(GNULIB_MKDIRAT)/g' \
  2050. -e 's/@''GNULIB_MKFIFO''@/$(GNULIB_MKFIFO)/g' \
  2051. -e 's/@''GNULIB_MKFIFOAT''@/$(GNULIB_MKFIFOAT)/g' \
  2052. -e 's/@''GNULIB_MKNOD''@/$(GNULIB_MKNOD)/g' \
  2053. -e 's/@''GNULIB_MKNODAT''@/$(GNULIB_MKNODAT)/g' \
  2054. -e 's/@''GNULIB_STAT''@/$(GNULIB_STAT)/g' \
  2055. -e 's/@''GNULIB_UTIMENSAT''@/$(GNULIB_UTIMENSAT)/g' \
  2056. -e 's|@''HAVE_FCHMODAT''@|$(HAVE_FCHMODAT)|g' \
  2057. -e 's|@''HAVE_FSTATAT''@|$(HAVE_FSTATAT)|g' \
  2058. -e 's|@''HAVE_FUTIMENS''@|$(HAVE_FUTIMENS)|g' \
  2059. -e 's|@''HAVE_LCHMOD''@|$(HAVE_LCHMOD)|g' \
  2060. -e 's|@''HAVE_LSTAT''@|$(HAVE_LSTAT)|g' \
  2061. -e 's|@''HAVE_MKDIRAT''@|$(HAVE_MKDIRAT)|g' \
  2062. -e 's|@''HAVE_MKFIFO''@|$(HAVE_MKFIFO)|g' \
  2063. -e 's|@''HAVE_MKFIFOAT''@|$(HAVE_MKFIFOAT)|g' \
  2064. -e 's|@''HAVE_MKNOD''@|$(HAVE_MKNOD)|g' \
  2065. -e 's|@''HAVE_MKNODAT''@|$(HAVE_MKNODAT)|g' \
  2066. -e 's|@''HAVE_UTIMENSAT''@|$(HAVE_UTIMENSAT)|g' \
  2067. -e 's|@''REPLACE_FSTAT''@|$(REPLACE_FSTAT)|g' \
  2068. -e 's|@''REPLACE_FSTATAT''@|$(REPLACE_FSTATAT)|g' \
  2069. -e 's|@''REPLACE_FUTIMENS''@|$(REPLACE_FUTIMENS)|g' \
  2070. -e 's|@''REPLACE_LSTAT''@|$(REPLACE_LSTAT)|g' \
  2071. -e 's|@''REPLACE_MKDIR''@|$(REPLACE_MKDIR)|g' \
  2072. -e 's|@''REPLACE_MKFIFO''@|$(REPLACE_MKFIFO)|g' \
  2073. -e 's|@''REPLACE_MKNOD''@|$(REPLACE_MKNOD)|g' \
  2074. -e 's|@''REPLACE_STAT''@|$(REPLACE_STAT)|g' \
  2075. -e 's|@''REPLACE_UTIMENSAT''@|$(REPLACE_UTIMENSAT)|g' \
  2076. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2077. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2078. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  2079. < $(srcdir)/sys_stat.in.h; \
  2080. } > $@-t && \
  2081. mv $@-t $@
  2082. MOSTLYCLEANFILES += sys/stat.h sys/stat.h-t
  2083. MOSTLYCLEANDIRS += sys
  2084. EXTRA_DIST += sys_stat.in.h
  2085. ## end gnulib module sys_stat
  2086. ## begin gnulib module sys_time
  2087. BUILT_SOURCES += sys/time.h
  2088. # We need the following in order to create <sys/time.h> when the system
  2089. # doesn't have one that works with the given compiler.
  2090. sys/time.h: sys_time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  2091. $(AM_V_at)$(MKDIR_P) sys
  2092. $(AM_V_GEN)rm -f $@-t $@ && \
  2093. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2094. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2095. -e 's/@''HAVE_SYS_TIME_H''@/$(HAVE_SYS_TIME_H)/g' \
  2096. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2097. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2098. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2099. -e 's|@''NEXT_SYS_TIME_H''@|$(NEXT_SYS_TIME_H)|g' \
  2100. -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \
  2101. -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \
  2102. -e 's/@''HAVE_GETTIMEOFDAY''@/$(HAVE_GETTIMEOFDAY)/g' \
  2103. -e 's/@''HAVE_STRUCT_TIMEVAL''@/$(HAVE_STRUCT_TIMEVAL)/g' \
  2104. -e 's/@''REPLACE_GETTIMEOFDAY''@/$(REPLACE_GETTIMEOFDAY)/g' \
  2105. -e 's/@''REPLACE_STRUCT_TIMEVAL''@/$(REPLACE_STRUCT_TIMEVAL)/g' \
  2106. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2107. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2108. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  2109. < $(srcdir)/sys_time.in.h; \
  2110. } > $@-t && \
  2111. mv $@-t $@
  2112. MOSTLYCLEANFILES += sys/time.h sys/time.h-t
  2113. EXTRA_DIST += sys_time.in.h
  2114. ## end gnulib module sys_time
  2115. ## begin gnulib module sys_times
  2116. BUILT_SOURCES += sys/times.h
  2117. # We need the following in order to create <sys/times.h> when the system
  2118. # doesn't have one that works with the given compiler.
  2119. sys/times.h: sys_times.in.h $(top_builddir)/config.status $(WARN_ON_USE_H) $(ARG_NONNULL_H)
  2120. $(AM_V_at)$(MKDIR_P) sys
  2121. $(AM_V_GEN)rm -f $@-t $@ && \
  2122. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2123. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2124. -e 's/@''HAVE_SYS_TIMES_H''@/$(HAVE_SYS_TIMES_H)/g' \
  2125. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2126. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2127. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2128. -e 's|@''NEXT_SYS_TIMES_H''@|$(NEXT_SYS_TIMES_H)|g' \
  2129. -e 's/@''GNULIB_TIMES''@/$(GNULIB_TIMES)/g' \
  2130. -e 's|@''HAVE_STRUCT_TMS''@|$(HAVE_STRUCT_TMS)|g' \
  2131. -e 's|@''HAVE_TIMES''@|$(HAVE_TIMES)|g' \
  2132. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2133. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  2134. < $(srcdir)/sys_times.in.h; \
  2135. } > $@-t && \
  2136. mv $@-t $@
  2137. MOSTLYCLEANFILES += sys/times.h sys/times.h-t
  2138. MOSTLYCLEANDIRS += sys
  2139. EXTRA_DIST += sys_times.in.h
  2140. ## end gnulib module sys_times
  2141. ## begin gnulib module sys_types
  2142. BUILT_SOURCES += sys/types.h
  2143. # We need the following in order to create <sys/types.h> when the system
  2144. # doesn't have one that works with the given compiler.
  2145. sys/types.h: sys_types.in.h $(top_builddir)/config.status
  2146. $(AM_V_at)$(MKDIR_P) sys
  2147. $(AM_V_GEN)rm -f $@-t $@ && \
  2148. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2149. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2150. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2151. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2152. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2153. -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \
  2154. -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \
  2155. < $(srcdir)/sys_types.in.h; \
  2156. } > $@-t && \
  2157. mv $@-t $@
  2158. MOSTLYCLEANFILES += sys/types.h sys/types.h-t
  2159. EXTRA_DIST += sys_types.in.h
  2160. ## end gnulib module sys_types
  2161. ## begin gnulib module sys_uio
  2162. BUILT_SOURCES += sys/uio.h
  2163. # We need the following in order to create <sys/uio.h> when the system
  2164. # doesn't have one that works with the given compiler.
  2165. sys/uio.h: sys_uio.in.h $(top_builddir)/config.status
  2166. $(AM_V_at)$(MKDIR_P) sys
  2167. $(AM_V_GEN)rm -f $@-t $@ && \
  2168. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2169. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2170. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2171. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2172. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2173. -e 's|@''NEXT_SYS_UIO_H''@|$(NEXT_SYS_UIO_H)|g' \
  2174. -e 's|@''HAVE_SYS_UIO_H''@|$(HAVE_SYS_UIO_H)|g' \
  2175. < $(srcdir)/sys_uio.in.h; \
  2176. } > $@-t && \
  2177. mv -f $@-t $@
  2178. MOSTLYCLEANFILES += sys/uio.h sys/uio.h-t
  2179. MOSTLYCLEANDIRS += sys
  2180. EXTRA_DIST += sys_uio.in.h
  2181. ## end gnulib module sys_uio
  2182. ## begin gnulib module tempname
  2183. if gl_GNULIB_ENABLED_tempname
  2184. libgnu_la_SOURCES += tempname.c
  2185. endif
  2186. EXTRA_DIST += tempname.h
  2187. ## end gnulib module tempname
  2188. ## begin gnulib module time
  2189. BUILT_SOURCES += time.h
  2190. # We need the following in order to create <time.h> when the system
  2191. # doesn't have one that works with the given compiler.
  2192. time.h: time.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  2193. $(AM_V_GEN)rm -f $@-t $@ && \
  2194. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  2195. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2196. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2197. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2198. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2199. -e 's|@''NEXT_TIME_H''@|$(NEXT_TIME_H)|g' \
  2200. -e 's/@''GNULIB_GETTIMEOFDAY''@/$(GNULIB_GETTIMEOFDAY)/g' \
  2201. -e 's/@''GNULIB_MKTIME''@/$(GNULIB_MKTIME)/g' \
  2202. -e 's/@''GNULIB_NANOSLEEP''@/$(GNULIB_NANOSLEEP)/g' \
  2203. -e 's/@''GNULIB_STRPTIME''@/$(GNULIB_STRPTIME)/g' \
  2204. -e 's/@''GNULIB_TIMEGM''@/$(GNULIB_TIMEGM)/g' \
  2205. -e 's/@''GNULIB_TIME_R''@/$(GNULIB_TIME_R)/g' \
  2206. -e 's/@''GNULIB_TIME_RZ''@/$(GNULIB_TIME_RZ)/g' \
  2207. -e 's|@''HAVE_DECL_LOCALTIME_R''@|$(HAVE_DECL_LOCALTIME_R)|g' \
  2208. -e 's|@''HAVE_NANOSLEEP''@|$(HAVE_NANOSLEEP)|g' \
  2209. -e 's|@''HAVE_STRPTIME''@|$(HAVE_STRPTIME)|g' \
  2210. -e 's|@''HAVE_TIMEGM''@|$(HAVE_TIMEGM)|g' \
  2211. -e 's|@''HAVE_TIMEZONE_T''@|$(HAVE_TIMEZONE_T)|g' \
  2212. -e 's|@''REPLACE_GMTIME''@|$(REPLACE_GMTIME)|g' \
  2213. -e 's|@''REPLACE_LOCALTIME''@|$(REPLACE_LOCALTIME)|g' \
  2214. -e 's|@''REPLACE_LOCALTIME_R''@|$(REPLACE_LOCALTIME_R)|g' \
  2215. -e 's|@''REPLACE_MKTIME''@|$(REPLACE_MKTIME)|g' \
  2216. -e 's|@''REPLACE_NANOSLEEP''@|$(REPLACE_NANOSLEEP)|g' \
  2217. -e 's|@''REPLACE_TIMEGM''@|$(REPLACE_TIMEGM)|g' \
  2218. -e 's|@''PTHREAD_H_DEFINES_STRUCT_TIMESPEC''@|$(PTHREAD_H_DEFINES_STRUCT_TIMESPEC)|g' \
  2219. -e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(SYS_TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \
  2220. -e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|$(TIME_H_DEFINES_STRUCT_TIMESPEC)|g' \
  2221. -e 's|@''UNISTD_H_DEFINES_STRUCT_TIMESPEC''@|$(UNISTD_H_DEFINES_STRUCT_TIMESPEC)|g' \
  2222. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2223. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2224. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  2225. < $(srcdir)/time.in.h; \
  2226. } > $@-t && \
  2227. mv $@-t $@
  2228. MOSTLYCLEANFILES += time.h time.h-t
  2229. EXTRA_DIST += time.in.h
  2230. ## end gnulib module time
  2231. ## begin gnulib module time_r
  2232. if gl_GNULIB_ENABLED_time_r
  2233. endif
  2234. EXTRA_DIST += time_r.c
  2235. EXTRA_libgnu_la_SOURCES += time_r.c
  2236. ## end gnulib module time_r
  2237. ## begin gnulib module time_rz
  2238. EXTRA_DIST += time-internal.h time_rz.c
  2239. EXTRA_libgnu_la_SOURCES += time_rz.c
  2240. ## end gnulib module time_rz
  2241. ## begin gnulib module timegm
  2242. if gl_GNULIB_ENABLED_timegm
  2243. endif
  2244. EXTRA_DIST += mktime-internal.h timegm.c
  2245. EXTRA_libgnu_la_SOURCES += timegm.c
  2246. ## end gnulib module timegm
  2247. ## begin gnulib module times
  2248. EXTRA_DIST += times.c
  2249. EXTRA_libgnu_la_SOURCES += times.c
  2250. ## end gnulib module times
  2251. ## begin gnulib module trunc
  2252. EXTRA_DIST += trunc.c
  2253. EXTRA_libgnu_la_SOURCES += trunc.c
  2254. ## end gnulib module trunc
  2255. ## begin gnulib module unistd
  2256. BUILT_SOURCES += unistd.h
  2257. libgnu_la_SOURCES += unistd.c
  2258. # We need the following in order to create an empty placeholder for
  2259. # <unistd.h> when the system doesn't have one.
  2260. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  2261. $(AM_V_GEN)rm -f $@-t $@ && \
  2262. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2263. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2264. -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \
  2265. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2266. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2267. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2268. -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \
  2269. -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \
  2270. -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \
  2271. -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \
  2272. -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \
  2273. -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \
  2274. -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \
  2275. -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \
  2276. -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \
  2277. -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \
  2278. -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \
  2279. -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \
  2280. -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \
  2281. -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \
  2282. -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \
  2283. -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \
  2284. -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \
  2285. -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \
  2286. -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \
  2287. -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \
  2288. -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \
  2289. -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \
  2290. -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \
  2291. -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \
  2292. -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \
  2293. -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \
  2294. -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \
  2295. -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \
  2296. -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \
  2297. -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \
  2298. -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \
  2299. -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \
  2300. -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \
  2301. -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \
  2302. -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \
  2303. -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \
  2304. -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \
  2305. -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \
  2306. -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \
  2307. -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \
  2308. -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \
  2309. -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \
  2310. -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \
  2311. -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \
  2312. -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \
  2313. -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \
  2314. -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \
  2315. -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \
  2316. -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \
  2317. -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \
  2318. -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \
  2319. < $(srcdir)/unistd.in.h | \
  2320. sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \
  2321. -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \
  2322. -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \
  2323. -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \
  2324. -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \
  2325. -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \
  2326. -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \
  2327. -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \
  2328. -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \
  2329. -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \
  2330. -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \
  2331. -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \
  2332. -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \
  2333. -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \
  2334. -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \
  2335. -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \
  2336. -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \
  2337. -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \
  2338. -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \
  2339. -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \
  2340. -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \
  2341. -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \
  2342. -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \
  2343. -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \
  2344. -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \
  2345. -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \
  2346. -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \
  2347. -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \
  2348. -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \
  2349. -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \
  2350. -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \
  2351. -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \
  2352. -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \
  2353. -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \
  2354. -e 's|@''HAVE_DECL_GETLOGIN''@|$(HAVE_DECL_GETLOGIN)|g' \
  2355. -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \
  2356. -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \
  2357. -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \
  2358. -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \
  2359. -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \
  2360. -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \
  2361. -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \
  2362. | \
  2363. sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \
  2364. -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \
  2365. -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \
  2366. -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \
  2367. -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \
  2368. -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \
  2369. -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \
  2370. -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \
  2371. -e 's|@''REPLACE_GETDTABLESIZE''@|$(REPLACE_GETDTABLESIZE)|g' \
  2372. -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \
  2373. -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \
  2374. -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \
  2375. -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \
  2376. -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \
  2377. -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \
  2378. -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \
  2379. -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \
  2380. -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \
  2381. -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \
  2382. -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \
  2383. -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \
  2384. -e 's|@''REPLACE_READLINKAT''@|$(REPLACE_READLINKAT)|g' \
  2385. -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \
  2386. -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \
  2387. -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \
  2388. -e 's|@''REPLACE_SYMLINKAT''@|$(REPLACE_SYMLINKAT)|g' \
  2389. -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \
  2390. -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \
  2391. -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \
  2392. -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \
  2393. -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \
  2394. -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \
  2395. -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \
  2396. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2397. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2398. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
  2399. } > $@-t && \
  2400. mv $@-t $@
  2401. MOSTLYCLEANFILES += unistd.h unistd.h-t
  2402. EXTRA_DIST += unistd.in.h
  2403. ## end gnulib module unistd
  2404. ## begin gnulib module unsetenv
  2405. if gl_GNULIB_ENABLED_unsetenv
  2406. endif
  2407. EXTRA_DIST += unsetenv.c
  2408. EXTRA_libgnu_la_SOURCES += unsetenv.c
  2409. ## end gnulib module unsetenv
  2410. ## begin gnulib module useless-if-before-free
  2411. EXTRA_DIST += $(top_srcdir)/build-aux/useless-if-before-free
  2412. ## end gnulib module useless-if-before-free
  2413. ## begin gnulib module vasnprintf
  2414. if gl_GNULIB_ENABLED_vasnprintf
  2415. endif
  2416. EXTRA_DIST += asnprintf.c float+.h printf-args.c printf-args.h printf-parse.c printf-parse.h vasnprintf.c vasnprintf.h
  2417. EXTRA_libgnu_la_SOURCES += asnprintf.c printf-args.c printf-parse.c vasnprintf.c
  2418. ## end gnulib module vasnprintf
  2419. ## begin gnulib module vc-list-files
  2420. EXTRA_DIST += $(top_srcdir)/build-aux/vc-list-files
  2421. ## end gnulib module vc-list-files
  2422. ## begin gnulib module verify
  2423. EXTRA_DIST += verify.h
  2424. ## end gnulib module verify
  2425. ## begin gnulib module vsnprintf
  2426. EXTRA_DIST += vsnprintf.c
  2427. EXTRA_libgnu_la_SOURCES += vsnprintf.c
  2428. ## end gnulib module vsnprintf
  2429. ## begin gnulib module wchar
  2430. BUILT_SOURCES += wchar.h
  2431. # We need the following in order to create <wchar.h> when the system
  2432. # version does not work standalone.
  2433. wchar.h: wchar.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H)
  2434. $(AM_V_GEN)rm -f $@-t $@ && \
  2435. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2436. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2437. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2438. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2439. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2440. -e 's|@''HAVE_FEATURES_H''@|$(HAVE_FEATURES_H)|g' \
  2441. -e 's|@''NEXT_WCHAR_H''@|$(NEXT_WCHAR_H)|g' \
  2442. -e 's|@''HAVE_WCHAR_H''@|$(HAVE_WCHAR_H)|g' \
  2443. -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \
  2444. -e 's/@''GNULIB_BTOWC''@/$(GNULIB_BTOWC)/g' \
  2445. -e 's/@''GNULIB_WCTOB''@/$(GNULIB_WCTOB)/g' \
  2446. -e 's/@''GNULIB_MBSINIT''@/$(GNULIB_MBSINIT)/g' \
  2447. -e 's/@''GNULIB_MBRTOWC''@/$(GNULIB_MBRTOWC)/g' \
  2448. -e 's/@''GNULIB_MBRLEN''@/$(GNULIB_MBRLEN)/g' \
  2449. -e 's/@''GNULIB_MBSRTOWCS''@/$(GNULIB_MBSRTOWCS)/g' \
  2450. -e 's/@''GNULIB_MBSNRTOWCS''@/$(GNULIB_MBSNRTOWCS)/g' \
  2451. -e 's/@''GNULIB_WCRTOMB''@/$(GNULIB_WCRTOMB)/g' \
  2452. -e 's/@''GNULIB_WCSRTOMBS''@/$(GNULIB_WCSRTOMBS)/g' \
  2453. -e 's/@''GNULIB_WCSNRTOMBS''@/$(GNULIB_WCSNRTOMBS)/g' \
  2454. -e 's/@''GNULIB_WCWIDTH''@/$(GNULIB_WCWIDTH)/g' \
  2455. -e 's/@''GNULIB_WMEMCHR''@/$(GNULIB_WMEMCHR)/g' \
  2456. -e 's/@''GNULIB_WMEMCMP''@/$(GNULIB_WMEMCMP)/g' \
  2457. -e 's/@''GNULIB_WMEMCPY''@/$(GNULIB_WMEMCPY)/g' \
  2458. -e 's/@''GNULIB_WMEMMOVE''@/$(GNULIB_WMEMMOVE)/g' \
  2459. -e 's/@''GNULIB_WMEMSET''@/$(GNULIB_WMEMSET)/g' \
  2460. -e 's/@''GNULIB_WCSLEN''@/$(GNULIB_WCSLEN)/g' \
  2461. -e 's/@''GNULIB_WCSNLEN''@/$(GNULIB_WCSNLEN)/g' \
  2462. -e 's/@''GNULIB_WCSCPY''@/$(GNULIB_WCSCPY)/g' \
  2463. -e 's/@''GNULIB_WCPCPY''@/$(GNULIB_WCPCPY)/g' \
  2464. -e 's/@''GNULIB_WCSNCPY''@/$(GNULIB_WCSNCPY)/g' \
  2465. -e 's/@''GNULIB_WCPNCPY''@/$(GNULIB_WCPNCPY)/g' \
  2466. -e 's/@''GNULIB_WCSCAT''@/$(GNULIB_WCSCAT)/g' \
  2467. -e 's/@''GNULIB_WCSNCAT''@/$(GNULIB_WCSNCAT)/g' \
  2468. -e 's/@''GNULIB_WCSCMP''@/$(GNULIB_WCSCMP)/g' \
  2469. -e 's/@''GNULIB_WCSNCMP''@/$(GNULIB_WCSNCMP)/g' \
  2470. -e 's/@''GNULIB_WCSCASECMP''@/$(GNULIB_WCSCASECMP)/g' \
  2471. -e 's/@''GNULIB_WCSNCASECMP''@/$(GNULIB_WCSNCASECMP)/g' \
  2472. -e 's/@''GNULIB_WCSCOLL''@/$(GNULIB_WCSCOLL)/g' \
  2473. -e 's/@''GNULIB_WCSXFRM''@/$(GNULIB_WCSXFRM)/g' \
  2474. -e 's/@''GNULIB_WCSDUP''@/$(GNULIB_WCSDUP)/g' \
  2475. -e 's/@''GNULIB_WCSCHR''@/$(GNULIB_WCSCHR)/g' \
  2476. -e 's/@''GNULIB_WCSRCHR''@/$(GNULIB_WCSRCHR)/g' \
  2477. -e 's/@''GNULIB_WCSCSPN''@/$(GNULIB_WCSCSPN)/g' \
  2478. -e 's/@''GNULIB_WCSSPN''@/$(GNULIB_WCSSPN)/g' \
  2479. -e 's/@''GNULIB_WCSPBRK''@/$(GNULIB_WCSPBRK)/g' \
  2480. -e 's/@''GNULIB_WCSSTR''@/$(GNULIB_WCSSTR)/g' \
  2481. -e 's/@''GNULIB_WCSTOK''@/$(GNULIB_WCSTOK)/g' \
  2482. -e 's/@''GNULIB_WCSWIDTH''@/$(GNULIB_WCSWIDTH)/g' \
  2483. < $(srcdir)/wchar.in.h | \
  2484. sed -e 's|@''HAVE_WINT_T''@|$(HAVE_WINT_T)|g' \
  2485. -e 's|@''HAVE_BTOWC''@|$(HAVE_BTOWC)|g' \
  2486. -e 's|@''HAVE_MBSINIT''@|$(HAVE_MBSINIT)|g' \
  2487. -e 's|@''HAVE_MBRTOWC''@|$(HAVE_MBRTOWC)|g' \
  2488. -e 's|@''HAVE_MBRLEN''@|$(HAVE_MBRLEN)|g' \
  2489. -e 's|@''HAVE_MBSRTOWCS''@|$(HAVE_MBSRTOWCS)|g' \
  2490. -e 's|@''HAVE_MBSNRTOWCS''@|$(HAVE_MBSNRTOWCS)|g' \
  2491. -e 's|@''HAVE_WCRTOMB''@|$(HAVE_WCRTOMB)|g' \
  2492. -e 's|@''HAVE_WCSRTOMBS''@|$(HAVE_WCSRTOMBS)|g' \
  2493. -e 's|@''HAVE_WCSNRTOMBS''@|$(HAVE_WCSNRTOMBS)|g' \
  2494. -e 's|@''HAVE_WMEMCHR''@|$(HAVE_WMEMCHR)|g' \
  2495. -e 's|@''HAVE_WMEMCMP''@|$(HAVE_WMEMCMP)|g' \
  2496. -e 's|@''HAVE_WMEMCPY''@|$(HAVE_WMEMCPY)|g' \
  2497. -e 's|@''HAVE_WMEMMOVE''@|$(HAVE_WMEMMOVE)|g' \
  2498. -e 's|@''HAVE_WMEMSET''@|$(HAVE_WMEMSET)|g' \
  2499. -e 's|@''HAVE_WCSLEN''@|$(HAVE_WCSLEN)|g' \
  2500. -e 's|@''HAVE_WCSNLEN''@|$(HAVE_WCSNLEN)|g' \
  2501. -e 's|@''HAVE_WCSCPY''@|$(HAVE_WCSCPY)|g' \
  2502. -e 's|@''HAVE_WCPCPY''@|$(HAVE_WCPCPY)|g' \
  2503. -e 's|@''HAVE_WCSNCPY''@|$(HAVE_WCSNCPY)|g' \
  2504. -e 's|@''HAVE_WCPNCPY''@|$(HAVE_WCPNCPY)|g' \
  2505. -e 's|@''HAVE_WCSCAT''@|$(HAVE_WCSCAT)|g' \
  2506. -e 's|@''HAVE_WCSNCAT''@|$(HAVE_WCSNCAT)|g' \
  2507. -e 's|@''HAVE_WCSCMP''@|$(HAVE_WCSCMP)|g' \
  2508. -e 's|@''HAVE_WCSNCMP''@|$(HAVE_WCSNCMP)|g' \
  2509. -e 's|@''HAVE_WCSCASECMP''@|$(HAVE_WCSCASECMP)|g' \
  2510. -e 's|@''HAVE_WCSNCASECMP''@|$(HAVE_WCSNCASECMP)|g' \
  2511. -e 's|@''HAVE_WCSCOLL''@|$(HAVE_WCSCOLL)|g' \
  2512. -e 's|@''HAVE_WCSXFRM''@|$(HAVE_WCSXFRM)|g' \
  2513. -e 's|@''HAVE_WCSDUP''@|$(HAVE_WCSDUP)|g' \
  2514. -e 's|@''HAVE_WCSCHR''@|$(HAVE_WCSCHR)|g' \
  2515. -e 's|@''HAVE_WCSRCHR''@|$(HAVE_WCSRCHR)|g' \
  2516. -e 's|@''HAVE_WCSCSPN''@|$(HAVE_WCSCSPN)|g' \
  2517. -e 's|@''HAVE_WCSSPN''@|$(HAVE_WCSSPN)|g' \
  2518. -e 's|@''HAVE_WCSPBRK''@|$(HAVE_WCSPBRK)|g' \
  2519. -e 's|@''HAVE_WCSSTR''@|$(HAVE_WCSSTR)|g' \
  2520. -e 's|@''HAVE_WCSTOK''@|$(HAVE_WCSTOK)|g' \
  2521. -e 's|@''HAVE_WCSWIDTH''@|$(HAVE_WCSWIDTH)|g' \
  2522. -e 's|@''HAVE_DECL_WCTOB''@|$(HAVE_DECL_WCTOB)|g' \
  2523. -e 's|@''HAVE_DECL_WCWIDTH''@|$(HAVE_DECL_WCWIDTH)|g' \
  2524. | \
  2525. sed -e 's|@''REPLACE_MBSTATE_T''@|$(REPLACE_MBSTATE_T)|g' \
  2526. -e 's|@''REPLACE_BTOWC''@|$(REPLACE_BTOWC)|g' \
  2527. -e 's|@''REPLACE_WCTOB''@|$(REPLACE_WCTOB)|g' \
  2528. -e 's|@''REPLACE_MBSINIT''@|$(REPLACE_MBSINIT)|g' \
  2529. -e 's|@''REPLACE_MBRTOWC''@|$(REPLACE_MBRTOWC)|g' \
  2530. -e 's|@''REPLACE_MBRLEN''@|$(REPLACE_MBRLEN)|g' \
  2531. -e 's|@''REPLACE_MBSRTOWCS''@|$(REPLACE_MBSRTOWCS)|g' \
  2532. -e 's|@''REPLACE_MBSNRTOWCS''@|$(REPLACE_MBSNRTOWCS)|g' \
  2533. -e 's|@''REPLACE_WCRTOMB''@|$(REPLACE_WCRTOMB)|g' \
  2534. -e 's|@''REPLACE_WCSRTOMBS''@|$(REPLACE_WCSRTOMBS)|g' \
  2535. -e 's|@''REPLACE_WCSNRTOMBS''@|$(REPLACE_WCSNRTOMBS)|g' \
  2536. -e 's|@''REPLACE_WCWIDTH''@|$(REPLACE_WCWIDTH)|g' \
  2537. -e 's|@''REPLACE_WCSWIDTH''@|$(REPLACE_WCSWIDTH)|g' \
  2538. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2539. -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
  2540. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \
  2541. } > $@-t && \
  2542. mv $@-t $@
  2543. MOSTLYCLEANFILES += wchar.h wchar.h-t
  2544. EXTRA_DIST += wchar.in.h
  2545. ## end gnulib module wchar
  2546. ## begin gnulib module wcrtomb
  2547. if gl_GNULIB_ENABLED_wcrtomb
  2548. endif
  2549. EXTRA_DIST += wcrtomb.c
  2550. EXTRA_libgnu_la_SOURCES += wcrtomb.c
  2551. ## end gnulib module wcrtomb
  2552. ## begin gnulib module wctype-h
  2553. if gl_GNULIB_ENABLED_3dcce957eadc896e63ab5f137947b410
  2554. BUILT_SOURCES += wctype.h
  2555. libgnu_la_SOURCES += wctype-h.c
  2556. # We need the following in order to create <wctype.h> when the system
  2557. # doesn't have one that works with the given compiler.
  2558. wctype.h: wctype.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(WARN_ON_USE_H)
  2559. $(AM_V_GEN)rm -f $@-t $@ && \
  2560. { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  2561. sed -e 's|@''GUARD_PREFIX''@|GL|g' \
  2562. -e 's/@''HAVE_WCTYPE_H''@/$(HAVE_WCTYPE_H)/g' \
  2563. -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
  2564. -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
  2565. -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
  2566. -e 's|@''NEXT_WCTYPE_H''@|$(NEXT_WCTYPE_H)|g' \
  2567. -e 's/@''GNULIB_OVERRIDES_WINT_T''@/$(GNULIB_OVERRIDES_WINT_T)/g' \
  2568. -e 's/@''GNULIB_ISWBLANK''@/$(GNULIB_ISWBLANK)/g' \
  2569. -e 's/@''GNULIB_WCTYPE''@/$(GNULIB_WCTYPE)/g' \
  2570. -e 's/@''GNULIB_ISWCTYPE''@/$(GNULIB_ISWCTYPE)/g' \
  2571. -e 's/@''GNULIB_WCTRANS''@/$(GNULIB_WCTRANS)/g' \
  2572. -e 's/@''GNULIB_TOWCTRANS''@/$(GNULIB_TOWCTRANS)/g' \
  2573. -e 's/@''HAVE_ISWBLANK''@/$(HAVE_ISWBLANK)/g' \
  2574. -e 's/@''HAVE_ISWCNTRL''@/$(HAVE_ISWCNTRL)/g' \
  2575. -e 's/@''HAVE_WCTYPE_T''@/$(HAVE_WCTYPE_T)/g' \
  2576. -e 's/@''HAVE_WCTRANS_T''@/$(HAVE_WCTRANS_T)/g' \
  2577. -e 's/@''HAVE_WINT_T''@/$(HAVE_WINT_T)/g' \
  2578. -e 's/@''REPLACE_ISWBLANK''@/$(REPLACE_ISWBLANK)/g' \
  2579. -e 's/@''REPLACE_ISWCNTRL''@/$(REPLACE_ISWCNTRL)/g' \
  2580. -e 's/@''REPLACE_TOWLOWER''@/$(REPLACE_TOWLOWER)/g' \
  2581. -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \
  2582. -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
  2583. < $(srcdir)/wctype.in.h; \
  2584. } > $@-t && \
  2585. mv $@-t $@
  2586. MOSTLYCLEANFILES += wctype.h wctype.h-t
  2587. endif
  2588. EXTRA_DIST += wctype.in.h
  2589. ## end gnulib module wctype-h
  2590. ## begin gnulib module write
  2591. EXTRA_DIST += write.c
  2592. EXTRA_libgnu_la_SOURCES += write.c
  2593. ## end gnulib module write
  2594. ## begin gnulib module xalloc-oversized
  2595. EXTRA_DIST += xalloc-oversized.h
  2596. ## end gnulib module xalloc-oversized
  2597. ## begin gnulib module xsize
  2598. if gl_GNULIB_ENABLED_xsize
  2599. libgnu_la_SOURCES += xsize.h xsize.c
  2600. endif
  2601. ## end gnulib module xsize
  2602. mostlyclean-local: mostlyclean-generic
  2603. @for dir in '' $(MOSTLYCLEANDIRS); do \
  2604. if test -n "$$dir" && test -d $$dir; then \
  2605. echo "rmdir $$dir"; rmdir $$dir; \
  2606. fi; \
  2607. done; \
  2608. :