You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(30) |
Aug
(37) |
Sep
|
Oct
|
Nov
|
Dec
|
|---|
Update of /cvsroot/lib/LIB
In directory usw-pr-cvs1:/tmp/cvs-serv20172
Modified Files:
ChangeLog LIB.c config2.h.in configure.in ekran.c ekran.h
ostatnia_zmiana postac.c przedmioty.c przedmioty.h
Log Message:
* zmienione wybierz_przedmiot()
* dodane ile_przedmiotow()
* przy podnoszeniu w razie potrzeby wywo³ywane jest wybierz_przedmiot()
Index: ChangeLog
===================================================================
RCS file: /cvsroot/lib/LIB/ChangeLog,v
retrieving revision 1.307
retrieving revision 1.308
diff -C2 -d -r1.307 -r1.308
*** ChangeLog 25 Aug 2002 09:06:35 -0000 1.307
--- ChangeLog 25 Aug 2002 18:13:56 -0000 1.308
***************
*** 1,2 ****
--- 1,7 ----
+ 2002/08/25 20:13:23 przewdnik
+ * zmienione wybierz_przedmiot()
+ * dodane ile_przedmiotow()
+ * przy podnoszeniu w razie potrzeby wywo³ywane jest wybierz_przedmiot()
+
2002/08/25 11:05:51 przewdnik
* usuniêcie acconfig.h
Index: LIB.c
===================================================================
RCS file: /cvsroot/lib/LIB/LIB.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** LIB.c 24 Aug 2002 18:51:06 -0000 1.47
--- LIB.c 25 Aug 2002 18:13:56 -0000 1.48
***************
*** 234,242 ****
rysuj_postacie(&Poziom);
rysuj_przedmioty(&Poziom, &Poziom.Przedmioty);
- /* wyczysc_gore();
- strcpy(tmp2, _("\nPowód ¶mierci: "));
- strcat(tmp2, powod_smierci);
- strcat(tmp2, _(" \nNaci¶nij co¶."));
- dodaj_napis(tmp2); */
dodaj_napis(_("Nie ¿yjesz... \nNaci¶nij dowolny klawisz."));
wyswietl_opis_gracza(&Poziom);
--- 234,237 ----
Index: config2.h.in
===================================================================
RCS file: /cvsroot/lib/LIB/config2.h.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** config2.h.in 25 Aug 2002 09:06:36 -0000 1.13
--- config2.h.in 25 Aug 2002 18:13:56 -0000 1.14
***************
*** 1,5 ****
/* config2.h.in. Generated from configure.in by autoheader. */
! /* "Languages" */
#undef ALL_LINGUAS
--- 1,5 ----
/* config2.h.in. Generated from configure.in by autoheader. */
! /* Languages */
#undef ALL_LINGUAS
***************
*** 9,13 ****
#undef CRAY_STACKSEG_END
! /* "Do we build on Cygwin" */
#undef CYGWIN
--- 9,13 ----
#undef CRAY_STACKSEG_END
! /* Do we build on Cygwin */
#undef CYGWIN
***************
*** 15,22 ****
#undef C_ALLOCA
! /* "Do we use debbuging" */
#undef DEBUG
! /* "Do we use parser debbuging" */
#undef DEBUG_PARSER
--- 15,22 ----
#undef C_ALLOCA
! /* Do we use debbuging */
#undef DEBUG
! /* Do we use parser debbuging */
#undef DEBUG_PARSER
***************
*** 212,222 ****
#undef INTDIV0_RAISES_SIGFPE
! /* "Do we build on Linux box" */
#undef LINUX
! /* "Magic taxis" */
#undef MAGIC_TAXIS
! /* "Do we have optimization on" */
#undef OPT
--- 212,222 ----
#undef INTDIV0_RAISES_SIGFPE
! /* Do we build on Linux box */
#undef LINUX
! /* Magic taxis */
#undef MAGIC_TAXIS
! /* Do we have optimization on */
#undef OPT
***************
*** 259,263 ****
#undef VERSION
! /* "Do we build on Djgpp" */
#undef _DJGPP
--- 259,263 ----
#undef VERSION
! /* Do we build on Djgpp */
#undef _DJGPP
Index: configure.in
===================================================================
RCS file: /cvsroot/lib/LIB/configure.in,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** configure.in 25 Aug 2002 09:06:37 -0000 1.31
--- configure.in 25 Aug 2002 18:13:56 -0000 1.32
***************
*** 17,21 ****
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
ALL_LINGUAS="de en fr"
! AC_DEFINE_UNQUOTED(ALL_LINGUAS,"$ALL_LINGUAS","Languages")
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
--- 17,21 ----
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
ALL_LINGUAS="de en fr"
! AC_DEFINE_UNQUOTED(ALL_LINGUAS,"$ALL_LINGUAS",Languages)
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
***************
*** 36,46 ****
AC_CHECK_FUNCS(getcwd getwd mkdir putenv strcspn strdup strstr)
! AH_TEMPLATE(DEBUG, "Do we use debbuging")
! AH_TEMPLATE(DEBUG_PARSER, "Do we use parser debbuging")
! AH_TEMPLATE(OPT, "Do we have optimization on")
! AH_TEMPLATE(MAGIC_TAXIS, "Magic taxis")
! AH_TEMPLATE(LINUX, "Do we build on Linux box")
! AH_TEMPLATE(CYGWIN, "Do we build on Cygwin")
! AH_TEMPLATE(_DJGPP, "Do we build on Djgpp")
AC_MSG_CHECKING(--enable-debug)
--- 36,46 ----
AC_CHECK_FUNCS(getcwd getwd mkdir putenv strcspn strdup strstr)
! AH_TEMPLATE(DEBUG, Do we use debbuging)
! AH_TEMPLATE(DEBUG_PARSER, Do we use parser debbuging)
! AH_TEMPLATE(OPT, Do we have optimization on)
! AH_TEMPLATE(MAGIC_TAXIS, Magic taxis)
! AH_TEMPLATE(LINUX, Do we build on Linux box)
! AH_TEMPLATE(CYGWIN, Do we build on Cygwin)
! AH_TEMPLATE(_DJGPP, Do we build on Djgpp)
AC_MSG_CHECKING(--enable-debug)
Index: ekran.c
===================================================================
RCS file: /cvsroot/lib/LIB/ekran.c,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** ekran.c 24 Aug 2002 15:08:30 -0000 1.74
--- ekran.c 25 Aug 2002 18:13:56 -0000 1.75
***************
*** 755,759 ****
short int
wybierz_przedmiot(struct przedmioty *Przedm, short int czy_pytac_o_skrot,
! int flagi, long int klasy)
{
int koniec = 0, maxl, key;
--- 755,759 ----
short int
wybierz_przedmiot(struct przedmioty *Przedm, short int czy_pytac_o_skrot,
! int flagi, long int klasy, int x, int y)
{
int koniec = 0, maxl, key;
***************
*** 764,768 ****
flagi = ~flagi;
klasy = ~klasy;
! if (czy_pytac_o_skrot) {
klawisz = pobierz_klawisz();
if (klawisz != '\r') { /* Wybieramy na pamiêæ */
--- 764,768 ----
flagi = ~flagi;
klasy = ~klasy;
! if (czy_pytac_o_skrot) { /* XXX Przy podnoszeniu nie mo¿na pytaæ o skrót */
klawisz = pobierz_klawisz();
if (klawisz != '\r') { /* Wybieramy na pamiêæ */
***************
*** 809,815 ****
(i < maxl) && (Przedm->aktualny != Przedm->koniec);
Przedm->aktualny = Przedm->aktualny->nast) {
! if (!(Przedm->aktualny->flagi & flagi)
! && !(przedmiotyID.
! ID[Przedm->aktualny->ID].klasa_przedmiotu & klasy)) {
tab[i] = Przedm->aktualny;
if (Przedm->aktualny->literka != ' ') {
--- 809,813 ----
(i < maxl) && (Przedm->aktualny != Przedm->koniec);
Przedm->aktualny = Przedm->aktualny->nast) {
! if (!(Przedm->aktualny->flagi & flagi) && !(przedmiotyID.ID[Przedm->aktualny->ID].klasa_przedmiotu & klasy) && (x==-1 || (x==Przedm->aktualny->x && y==Przedm->aktualny->y))) {
tab[i] = Przedm->aktualny;
if (Przedm->aktualny->literka != ' ') {
***************
*** 833,836 ****
--- 831,838 ----
}
}
+ if (!i)
+ {
+ Przedm->aktualny = NULL;
+ return 0; }
wmove(wEkran, maxy-1, 0);
zmien_kolor(K_BRAZOWY, wEkran);
Index: ekran.h
===================================================================
RCS file: /cvsroot/lib/LIB/ekran.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** ekran.h 24 Sep 2001 14:53:36 -0000 1.22
--- ekran.h 25 Aug 2002 18:13:56 -0000 1.23
***************
*** 57,61 ****
short int wybierz_przedmiot(struct przedmioty *Przedm,
short int czy_pytac_o_skrot, int flagi,
! long int klasy);
void zmien_kolor(int kolor, WINDOW * okno);
--- 57,61 ----
short int wybierz_przedmiot(struct przedmioty *Przedm,
short int czy_pytac_o_skrot, int flagi,
! long int klasy, int x, int y);
void zmien_kolor(int kolor, WINDOW * okno);
Index: ostatnia_zmiana
===================================================================
RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v
retrieving revision 1.196
retrieving revision 1.197
diff -C2 -d -r1.196 -r1.197
*** ostatnia_zmiana 25 Aug 2002 09:06:37 -0000 1.196
--- ostatnia_zmiana 25 Aug 2002 18:13:56 -0000 1.197
***************
*** 1 ****
! * usuniêcie acconfig.h
--- 1,3 ----
! * zmienione wybierz_przedmiot()
! * dodane ile_przedmiotow()
! * przy podnoszeniu w razie potrzeby wywo³ywane jest wybierz_przedmiot()
Index: postac.c
===================================================================
RCS file: /cvsroot/lib/LIB/postac.c,v
retrieving revision 1.152
retrieving revision 1.153
diff -C2 -d -r1.152 -r1.153
*** postac.c 24 Aug 2002 18:51:06 -0000 1.152
--- postac.c 25 Aug 2002 18:13:56 -0000 1.153
***************
*** 445,449 ****
dodaj_napis(_("Co chcesz przeczytaæ? (ENTER - lista) "));
if (!wybierz_przedmiot
! (&Postac->plecak, 1, WSZYSTKIE_FLAGI, KL_ZWOJ | KL_KSIAZKA)) {
return 0;
}
--- 445,449 ----
dodaj_napis(_("Co chcesz przeczytaæ? (ENTER - lista) "));
if (!wybierz_przedmiot
! (&Postac->plecak, 1, WSZYSTKIE_FLAGI, KL_ZWOJ | KL_KSIAZKA, -1, -1)) {
return 0;
}
***************
*** 485,489 ****
if (tolower(key) == _("p - plecak")[0]) {
if (!wybierz_przedmiot
! (&Postac->plecak, 0, WSZYSTKIE_FLAGI, KL_NAPOJ)) {
return 0;
}
--- 485,489 ----
if (tolower(key) == _("p - plecak")[0]) {
if (!wybierz_przedmiot
! (&Postac->plecak, 0, WSZYSTKIE_FLAGI, KL_NAPOJ, -1, -1)) {
return 0;
}
***************
*** 1635,1639 ****
dodaj_napis(_("Co chcesz zje¶æ? (ENTER - lista) "));
if (!wybierz_przedmiot
! (&Postac->plecak, 1, WSZYSTKIE_FLAGI, KL_JEDZENIE)) {
return 0;
}
--- 1635,1639 ----
dodaj_napis(_("Co chcesz zje¶æ? (ENTER - lista) "));
if (!wybierz_przedmiot
! (&Postac->plecak, 1, WSZYSTKIE_FLAGI, KL_JEDZENIE, -1, -1)) {
return 0;
}
Index: przedmioty.c
===================================================================
RCS file: /cvsroot/lib/LIB/przedmioty.c,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** przedmioty.c 24 Aug 2002 18:51:07 -0000 1.75
--- przedmioty.c 25 Aug 2002 18:13:56 -0000 1.76
***************
*** 6,10 ****
struct przedmiot Przedmiot;
! /* Szuka pierwszego przedmiotu na polu(x,y) */
short int szukaj_przedmiotu(int x, int y, struct przedmioty *Przedmioty)
{
--- 6,10 ----
struct przedmiot Przedmiot;
! /* Szuka pierwszego przedmiotu o x i y */
short int szukaj_przedmiotu(int x, int y, struct przedmioty *Przedmioty)
{
***************
*** 734,738 ****
}
! /* Szuka nastêpnego przedmiotu na polu (x,y) */
short int szukaj_nastepny(int x, int y, struct przedmioty *Przedmioty)
{
--- 734,738 ----
}
! /* Szuka nastêpnego przedmiotu o x i y */
short int szukaj_nastepny(int x, int y, struct przedmioty *Przedmioty)
{
***************
*** 748,751 ****
--- 748,759 ----
}
+ short int ile_przedmiotow(int x, int y, struct przedmioty *Przedmioty)
+ {
+ wskaznik_przedmiot pierwszy;
+ if (szukaj_przedmiotu(x,y,Przedmioty)==NIE_ZNALAZL) return 0;
+ pierwszy=Przedmioty->aktualny;
+ if (szukaj_nastepny(x,y,Przedmioty)==NIE_ZNALAZL) {Przedmioty->aktualny=pierwszy; return 1;} else {return 2;}
+ }
+
short int znajdz_niezaplacony(struct przedmioty *Przedmioty)
{
***************
*** 977,980 ****
--- 985,989 ----
Plecak->
tablica_literek[pozycja_litery(Plecak->aktualny->literka)] = 0;
+ Plecak->aktualny->literka = ' ';
if (Przedmioty->ile)
Przedmioty->aktualny = Przedmioty->poczatek->nast;
***************
*** 1174,1177 ****
--- 1183,1187 ----
Przedmioty->ile++;
}
+ Przedmioty->aktualny->literka = ' ';
Przedmioty->aktualny->flagi = flagi;
zrob_przedmiot(Przedmioty->aktualny);
***************
*** 1602,1606 ****
} else {
wybierz_przedmiot(&Postac->plecak, 0, WSZYSTKIE_FLAGI,
! dozwolone_klasy(miejsce));
if (Postac->plecak.aktualny == NULL) {
/*
--- 1612,1616 ----
} else {
wybierz_przedmiot(&Postac->plecak, 0, WSZYSTKIE_FLAGI,
! dozwolone_klasy(miejsce), -1, -1);
if (Postac->plecak.aktualny == NULL) {
/*
***************
*** 1707,1713 ****
int w_sklepie = czy_jest_w_strefie(SKLEP, Postac->x,
Postac->y);
!
! if (szukaj_przedmiotu
! (Postac->x, Postac->y, &Poziom->Przedmioty) == ZNALAZL) {
char literka;
int ile_tam_jest = Poziom->Przedmioty.aktualny->ilosc;
--- 1717,1727 ----
int w_sklepie = czy_jest_w_strefie(SKLEP, Postac->x,
Postac->y);
! int jest;
! jest = ile_przedmiotow(Postac->x, Postac->y, &Poziom->Przedmioty);
! if (jest==2) {
! if (!wybierz_przedmiot(&Poziom->Przedmioty, 0, WSZYSTKIE_FLAGI, KL_WSZYSTKIE, Postac->x, Postac->y)) return 0;
! }
! if (jest)
! {
char literka;
int ile_tam_jest = Poziom->Przedmioty.aktualny->ilosc;
***************
*** 1777,1781 ****
dodaj_napis(_("Co chcesz upu¶ciæ? (ENTER - lista) "));
if (!wybierz_przedmiot
! (&Postac->plecak, 1, WSZYSTKIE_FLAGI, KL_WSZYSTKIE)) {
koncz_runde = 0;
return 0;
--- 1791,1795 ----
dodaj_napis(_("Co chcesz upu¶ciæ? (ENTER - lista) "));
if (!wybierz_przedmiot
! (&Postac->plecak, 1, WSZYSTKIE_FLAGI, KL_WSZYSTKIE,-1,-1)) {
koncz_runde = 0;
return 0;
Index: przedmioty.h
===================================================================
RCS file: /cvsroot/lib/LIB/przedmioty.h,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** przedmioty.h 12 Feb 2002 11:43:37 -0000 1.32
--- przedmioty.h 25 Aug 2002 18:13:56 -0000 1.33
***************
*** 43,47 ****
void zapisz_tablice_znanych(char *out, long int *ile);
short int szukaj_nastepny(int x, int y, struct przedmioty *Przedmioty);
!
/* Szuka kolejnego niezap³aconego przedmiotu, zwraca ZNALAZL albo NIE_ZNALAZL */
short int znajdz_niezaplacony(struct przedmioty *Przedmioty);
--- 43,47 ----
void zapisz_tablice_znanych(char *out, long int *ile);
short int szukaj_nastepny(int x, int y, struct przedmioty *Przedmioty);
! short int ile_przedmiotow(int x, int y, struct przedmioty *Przedmioty); /* Zwraca 0, 1 albo 2 (gdy >1) */
/* Szuka kolejnego niezap³aconego przedmiotu, zwraca ZNALAZL albo NIE_ZNALAZL */
short int znajdz_niezaplacony(struct przedmioty *Przedmioty);
|
Update of /cvsroot/lib/LIB In directory usw-pr-cvs1:/tmp/cvs-serv24791 Modified Files: ChangeLog Makefile.in config2.h.in configure configure.in ostatnia_zmiana Removed Files: acconfig.h Log Message: * usuniêcie acconfig.h Index: ChangeLog =================================================================== RCS file: /cvsroot/lib/LIB/ChangeLog,v retrieving revision 1.306 retrieving revision 1.307 diff -C2 -d -r1.306 -r1.307 *** ChangeLog 24 Aug 2002 21:02:16 -0000 1.306 --- ChangeLog 25 Aug 2002 09:06:35 -0000 1.307 *************** *** 1,2 **** --- 1,5 ---- + 2002/08/25 11:05:51 przewdnik + * usuniêcie acconfig.h + 2002/08/24 23:01:51 przewdnik * usuniêcie zbêdnych plików z intl/ Index: Makefile.in =================================================================== RCS file: /cvsroot/lib/LIB/Makefile.in,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** Makefile.in 24 Aug 2002 20:54:15 -0000 1.40 --- Makefile.in 25 Aug 2002 09:06:36 -0000 1.41 *************** *** 165,171 **** uninstall-recursive check-recursive installcheck-recursive DIST_COMMON = README ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL \ ! Makefile.am Makefile.in NEWS TODO acconfig.h aclocal.m4 \ ! config.guess config.rpath config.sub config2.h.in configure \ ! configure.in depcomp install-sh missing mkinstalldirs DIST_SUBDIRS = $(SUBDIRS) SOURCES = $(tymczasowanazwaliba_SOURCES) --- 165,171 ---- uninstall-recursive check-recursive installcheck-recursive DIST_COMMON = README ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL \ ! Makefile.am Makefile.in NEWS TODO aclocal.m4 config.guess \ ! config.rpath config.sub config2.h.in configure configure.in \ ! depcomp install-sh missing mkinstalldirs DIST_SUBDIRS = $(SUBDIRS) SOURCES = $(tymczasowanazwaliba_SOURCES) *************** *** 203,207 **** cd $(top_builddir) && $(SHELL) ./config.status config2.h ! $(srcdir)/config2.h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/acconfig.h cd $(top_srcdir) && $(AUTOHEADER) touch $(srcdir)/config2.h.in --- 203,207 ---- cd $(top_builddir) && $(SHELL) ./config.status config2.h ! $(srcdir)/config2.h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOHEADER) touch $(srcdir)/config2.h.in Index: config2.h.in =================================================================== RCS file: /cvsroot/lib/LIB/config2.h.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** config2.h.in 24 Aug 2002 14:16:53 -0000 1.12 --- config2.h.in 25 Aug 2002 09:06:36 -0000 1.13 *************** *** 1,14 **** /* config2.h.in. Generated from configure.in by autoheader. */ - #undef ENABLE_NLS - #undef HAVE_CATGETS - #undef HAVE_GETTEXT - #undef HAVE_LC_MESSAGES - #undef HAVE_STPCPY #undef ALL_LINGUAS - /* Zdefiniowane, gdy kompilujemy z -O */ - #undef PREFIX - #undef PACKAGE - #undef VERSION /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP --- 1,6 ---- /* config2.h.in. Generated from configure.in by autoheader. */ + /* "Languages" */ #undef ALL_LINGUAS /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP *************** *** 246,249 **** --- 238,244 ---- /* Define to the version of this package. */ #undef PACKAGE_VERSION + + /* "prefix" */ + #undef PREFIX /* Define if <inttypes.h> exists and defines unusable PRI* macros. */ Index: configure =================================================================== RCS file: /cvsroot/lib/LIB/configure,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** configure 24 Aug 2002 20:54:15 -0000 1.41 --- configure 25 Aug 2002 09:06:36 -0000 1.42 *************** *** 2721,2724 **** --- 2721,2725 ---- ALL_LINGUAS="de en fr" + cat >>confdefs.h <<_ACEOF #define ALL_LINGUAS "$ALL_LINGUAS" *************** *** 8350,8353 **** --- 8351,8355 ---- test x"$prefix" = xNONE && prefix="$ac_default_prefix" + cat >>confdefs.h <<_ACEOF #define PREFIX "$prefix" Index: configure.in =================================================================== RCS file: /cvsroot/lib/LIB/configure.in,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** configure.in 24 Aug 2002 20:54:16 -0000 1.30 --- configure.in 25 Aug 2002 09:06:37 -0000 1.31 *************** *** 17,21 **** AC_DEFINE_UNQUOTED(VERSION, "$VERSION") ALL_LINGUAS="de en fr" ! AC_DEFINE_UNQUOTED(ALL_LINGUAS,"$ALL_LINGUAS") AC_SUBST(PACKAGE) AC_SUBST(VERSION) --- 17,21 ---- AC_DEFINE_UNQUOTED(VERSION, "$VERSION") ALL_LINGUAS="de en fr" ! AC_DEFINE_UNQUOTED(ALL_LINGUAS,"$ALL_LINGUAS","Languages") AC_SUBST(PACKAGE) AC_SUBST(VERSION) *************** *** 107,111 **** test x"$prefix" = xNONE && prefix="$ac_default_prefix" ! AC_DEFINE_UNQUOTED(PREFIX,"$prefix") LIBS="-lm -lncurses -lz" --- 107,111 ---- test x"$prefix" = xNONE && prefix="$ac_default_prefix" ! AC_DEFINE_UNQUOTED(PREFIX,"$prefix","prefix") LIBS="-lm -lncurses -lz" Index: ostatnia_zmiana =================================================================== RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v retrieving revision 1.195 retrieving revision 1.196 diff -C2 -d -r1.195 -r1.196 *** ostatnia_zmiana 24 Aug 2002 21:02:16 -0000 1.195 --- ostatnia_zmiana 25 Aug 2002 09:06:37 -0000 1.196 *************** *** 1 **** ! * usuniêcie zbêdnych plików z intl/ --- 1 ---- ! * usuniêcie acconfig.h --- acconfig.h DELETED --- |
Update of /cvsroot/lib/LIB/intl In directory usw-pr-cvs1:/tmp/cvs-serv6238/intl Removed Files: COPYING.LIB-2 COPYING.LIB-2.1 ChangeLog VERSION bindtextdom.c cat-compat.c config.charset dcgettext.c dcigettext.c dcngettext.c dgettext.c dngettext.c explodename.c finddomain.c gettext.c gettext.h gettextP.h hash-string.h intl-compat.c l10nflist.c libgettext.h libgnuintl.h linux-msg.sed loadinfo.h loadmsgcat.c localcharset.c locale.alias localealias.c ngettext.c plural.c plural.y po2tbl.sed.in ref-add.sin ref-del.sin textdomain.c xopen-msg.sed Log Message: * usuniêcie zbêdnych plików z intl/ --- COPYING.LIB-2 DELETED --- --- COPYING.LIB-2.1 DELETED --- --- ChangeLog DELETED --- --- VERSION DELETED --- --- bindtextdom.c DELETED --- --- cat-compat.c DELETED --- --- config.charset DELETED --- --- dcgettext.c DELETED --- --- dcigettext.c DELETED --- --- dcngettext.c DELETED --- --- dgettext.c DELETED --- --- dngettext.c DELETED --- --- explodename.c DELETED --- --- finddomain.c DELETED --- --- gettext.c DELETED --- --- gettext.h DELETED --- --- gettextP.h DELETED --- --- hash-string.h DELETED --- --- intl-compat.c DELETED --- --- l10nflist.c DELETED --- --- libgettext.h DELETED --- --- libgnuintl.h DELETED --- --- linux-msg.sed DELETED --- --- loadinfo.h DELETED --- --- loadmsgcat.c DELETED --- --- localcharset.c DELETED --- --- locale.alias DELETED --- --- localealias.c DELETED --- --- ngettext.c DELETED --- --- plural.c DELETED --- --- plural.y DELETED --- --- po2tbl.sed.in DELETED --- --- ref-add.sin DELETED --- --- ref-del.sin DELETED --- --- textdomain.c DELETED --- --- xopen-msg.sed DELETED --- |
|
From: <os...@us...> - 2002-08-24 21:02:19
|
Update of /cvsroot/lib/LIB In directory usw-pr-cvs1:/tmp/cvs-serv6238 Modified Files: ChangeLog ostatnia_zmiana Log Message: * usuniêcie zbêdnych plików z intl/ Index: ChangeLog =================================================================== RCS file: /cvsroot/lib/LIB/ChangeLog,v retrieving revision 1.305 retrieving revision 1.306 diff -C2 -d -r1.305 -r1.306 *** ChangeLog 24 Aug 2002 20:54:15 -0000 1.305 --- ChangeLog 24 Aug 2002 21:02:16 -0000 1.306 *************** *** 1,2 **** --- 1,5 ---- + 2002/08/24 23:01:51 przewdnik + * usuniêcie zbêdnych plików z intl/ + 2002/08/24 22:53:40 przewdnik * locales dzia³aj± (mi przynajmniej ;) ) Index: ostatnia_zmiana =================================================================== RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v retrieving revision 1.194 retrieving revision 1.195 diff -C2 -d -r1.194 -r1.195 *** ostatnia_zmiana 24 Aug 2002 20:54:16 -0000 1.194 --- ostatnia_zmiana 24 Aug 2002 21:02:16 -0000 1.195 *************** *** 1 **** ! * locales dzia³aj± (mi przynajmniej ;) ) --- 1 ---- ! * usuniêcie zbêdnych plików z intl/ |
|
From: <os...@us...> - 2002-08-24 20:54:21
|
Update of /cvsroot/lib/LIB/po In directory usw-pr-cvs1:/tmp/cvs-serv4325/po Modified Files: LIB.pot Makefile.in.in de.po en.po fr.po Added Files: ChangeLog Makevars Rules-quot boldquot.sed en...@bo... en...@qu... insert-header.sin quot.sed remove-potcdate.sin Log Message: * locales dzia³aj± (mi przynajmniej ;) ) --- NEW FILE: ChangeLog --- 2002-08-24 gettextize <bug...@gn...> * Makefile.in.in: Upgrade to gettext-0.11.5. * boldquot.sed: New file, from gettext-0.11.5. * en...@bo...: New file, from gettext-0.11.5. * en...@qu...: New file, from gettext-0.11.5. * insert-header.sin: New file, from gettext-0.11.5. * quot.sed: New file, from gettext-0.11.5. * remove-potcdate.sin: New file, from gettext-0.11.5. * Rules-quot: New file, from gettext-0.11.5. * cat-id-tbl.c: Remove file. * stamp-cat-id: Remove file. --- NEW FILE: Makevars --- # Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ -E # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Free Software Foundation, Inc. # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = --- NEW FILE: Rules-quot --- # Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en...@qu... en...@bo... insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en...@qu...-update: en...@qu...-update-en en...@bo...-update: en...@bo...-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en...@qu...-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en...@qu.../g' $(srcdir)/insert-header.sin > en...@qu...-header en...@bo...-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en...@bo.../g' $(srcdir)/insert-header.sin > en...@bo...-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header --- NEW FILE: boldquot.sed --- (This appears to be a binary file; contents omitted.) --- NEW FILE: en...@bo... --- # All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # --- NEW FILE: en...@qu... --- # All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # --- NEW FILE: insert-header.sin --- # Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } --- NEW FILE: quot.sed --- (This appears to be a binary file; contents omitted.) --- NEW FILE: remove-potcdate.sin --- # Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } Index: LIB.pot =================================================================== RCS file: /cvsroot/lib/LIB/po/LIB.pot,v retrieving revision 1.184 retrieving revision 1.185 diff -C2 -d -r1.184 -r1.185 *** LIB.pot 10 Jul 2002 22:13:50 -0000 1.184 --- LIB.pot 24 Aug 2002 20:54:17 -0000 1.185 *************** *** 1,13 **** # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # - #: przedmioty.c:114 przedmioty.c:201 przedmioty.c:286 przedmioty.c:373 - #: przedmioty.c:461 przedmioty.c:546 #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" [...4395 lines suppressed...] + "Idziesz ubi\346 tego faceta? " + msgstr "" + + #: lib/zdarzenia:44 + msgid "" + "Z niebios ozwa\263 si\352 g\263os tymi s\263owy:\n" + "\"Eeee... obiecywa\263em ci co\266?... Nie?!... Niemo\277liwe, khe, khe... " + "To nic nie dostaniesz... Chyba, \277e... J\363zeeeeeek! Masz ten miecz? To " + "dawaj go tu!\"\n" + "Pod twoje zasyfione stopy uderzy\263a b\263yskawica. Odruchowo przenios\263e" + "\266 wzrok na okopcone paznokcie i natrafi\263e\266 na... miecz." + msgstr "" + + #: lib/zdarzenia:63 + msgid "" + "Dawca zdarze\361 odzywa si\352 tymi s\263owy: \" Ha! Chcesz zabi\346 dow" + "\363dc\352 \277o\263nierzy! To ja ci dam co\266, co ci powinno pom\363c... I " + "przepraszam, \277e m\363wi\352 tak bez sensu, ale jestem tylko postaci\261 " + "testow\261 i czeg\363\277 mo\277na ode mnie wymaga\346?\"" msgstr "" Index: Makefile.in.in =================================================================== RCS file: /cvsroot/lib/LIB/po/Makefile.in.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.in.in 11 Jul 2002 07:28:54 -0000 1.2 --- Makefile.in.in 24 Aug 2002 20:54:17 -0000 1.3 *************** *** 1,17 **** ! # Makefile for program source directory in GNU NLS utilities package. ! # Copyright (C) 1995-1997, 2000, 2001 by Ulrich Drepper <dr...@gn...> # ! # This file file be copied and used freely without restrictions. It can ! # be used in projects which are not available under the GNU General Public License ! # but which still want to provide support for the GNU gettext functionality. ! # Please note that the actual code is *not* freely available. PACKAGE = @PACKAGE@ VERSION = @VERSION@ - # These two variables depend on the location of this directory. - subdir = po - top_builddir = .. - SHELL = /bin/sh @SET_MAKE@ --- 1,15 ---- ! # Makefile for PO directory in any package using GNU gettext. ! # Copyright (C) 1995-1997, 2000-2002 by Ulrich Drepper <dr...@gn...> # ! # This file can be copied and used freely without restrictions. It can ! # be used in projects which are not available under the GNU General Public ! # License but which still want to provide support for the GNU gettext ! # functionality. ! # Please note that the actual code of GNU gettext is covered by the GNU ! # General Public License and is *not* in the public domain. PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh @SET_MAKE@ *************** *** 32,53 **** mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` - CC = @CC@ GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ MSGMERGE = msgmerge ! ! DEFS = @DEFS@ ! CFLAGS = @CFLAGS@ ! CPPFLAGS = @CPPFLAGS@ ! ! INCLUDES = -I.. -I$(top_srcdir)/intl ! ! COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) POFILES = @POFILES@ GMOFILES = @GMOFILES@ ! DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \ ! $(POFILES) $(GMOFILES) POTFILES = \ --- 30,51 ---- mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ MSGMERGE = msgmerge ! MSGMERGE_UPDATE = @MSGMERGE@ --update ! MSGINIT = msginit ! MSGCONV = msgconv ! MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ ! UPDATEPOFILES = @UPDATEPOFILES@ ! DUMMYPOFILES = @DUMMYPOFILES@ ! DISTFILES.common = Makefile.in.in Makevars remove-potcdate.sin \ ! $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) ! DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \ ! $(POFILES) $(GMOFILES) \ ! $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ *************** *** 55,74 **** CATALOGS = @CATALOGS@ ! .SUFFIXES: ! .SUFFIXES: .c .o .po .pox .gmo .mo ! ! .c.o: ! $(COMPILE) $< ! .po.pox: ! $(MAKE) $(PACKAGE).pot ! $(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox .po.mo: ! $(MSGFMT) -o $@ $< .po.gmo: ! file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \ ! && rm -f $$file && $(GMSGFMT) --statistics -o $$file $< --- 53,74 ---- CATALOGS = @CATALOGS@ ! # Makevars gets inserted here. (Don't remove this line!) ! .SUFFIXES: ! .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update .po.mo: ! @echo "$(MSGFMT) -c -o $@ $<"; \ ! $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: ! @lang=`echo $* | sed -e 's,.*/,,'`; \ ! test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ ! echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ ! cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo ! ! .sin.sed: ! sed -e '/^#/d' $< > t-$@ ! mv t-$@ $@ *************** *** 78,96 **** all-no: ! .PHONY: ../keymap_alldefs.h ! ../keymap_alldefs.h: ! cd .. && $(MAKE) keymap_alldefs.h ! ! # Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. ! $(srcdir)/$(PACKAGE).pot: $(POTFILES) $(srcdir)/POTFILES.in ! $(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \ ! --add-comments --keyword=_ --keyword=N_ \ --files-from=$(srcdir)/POTFILES.in \ ! && test ! -f $(PACKAGE).po \ ! || ( rm -f $(srcdir)/$(PACKAGE).pot \ ! && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot ) --- 78,113 ---- all-no: ! # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. ! $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed ! $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ ! --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ --files-from=$(srcdir)/POTFILES.in \ ! --copyright-holder='$(COPYRIGHT_HOLDER)' ! test ! -f $(DOMAIN).po || { \ ! if test -f $(srcdir)/$(DOMAIN).pot; then \ ! sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ ! sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ ! if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ ! rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ ! else \ ! rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ ! mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ ! fi; \ ! else \ ! mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ ! fi; \ ! } ! ! $(srcdir)/$(DOMAIN).pot: ! $(MAKE) $(DOMAIN).pot-update ! ! $(POFILES): $(srcdir)/$(DOMAIN).pot ! @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ ! test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ ! echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ ! cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot *************** *** 100,105 **** if test "$(PACKAGE)" = "gettext"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ ! $(INSTALL_DATA) $(srcdir)/Makefile.in.in \ ! $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ else \ : ; \ --- 117,124 ---- if test "$(PACKAGE)" = "gettext"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ ! for file in $(DISTFILES.common); do \ ! $(INSTALL_DATA) $(srcdir)/$$file \ ! $(DESTDIR)$(gettextsrcdir)/$$file; \ ! done; \ else \ : ; \ *************** *** 111,142 **** for cat in $$catalogs; do \ cat=`basename $$cat`; \ ! lang=`echo $$cat | sed 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ ! if test -r $$cat; then \ ! $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \ ! echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \ ! else \ ! $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \ ! echo "installing $(srcdir)/$$cat as" \ ! "$(DESTDIR)$$dir/$(PACKAGE).mo"; \ ! fi; \ done ! # Define this as empty until I found a useful application. ! installcheck: ! uninstall: ! catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ ! lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ! rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \ done if test "$(PACKAGE)" = "gettext"; then \ ! rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ else \ : ; \ fi check: all --- 130,236 ---- for cat in $$catalogs; do \ cat=`basename $$cat`; \ ! lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ ! if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ ! $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ ! echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ ! for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ ! if test -n "$$lc"; then \ ! if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ ! link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ ! mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ ! mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ ! (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ ! for file in *; do \ ! if test -f $$file; then \ ! ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ ! fi; \ ! done); \ ! rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ ! else \ ! if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ ! :; \ ! else \ ! rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ ! mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ ! fi; \ ! fi; \ ! rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ! ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ! ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ! cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ! echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ ! fi; \ ! done; \ done ! install-strip: install ! installdirs: installdirs-exec installdirs-data ! installdirs-exec: ! installdirs-data: installdirs-data-@USE_NLS@ ! if test "$(PACKAGE)" = "gettext"; then \ ! $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ ! else \ ! : ; \ ! fi ! installdirs-data-no: ! installdirs-data-yes: ! $(mkinstalldirs) $(DESTDIR)$(datadir) ! @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ ! lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ ! dir=$(localedir)/$$lang/LC_MESSAGES; \ ! $(mkinstalldirs) $(DESTDIR)$$dir; \ ! for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ ! if test -n "$$lc"; then \ ! if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ ! link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ ! mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ ! mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ ! (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ ! for file in *; do \ ! if test -f $$file; then \ ! ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ ! fi; \ ! done); \ ! rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ ! else \ ! if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ ! :; \ ! else \ ! rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ ! mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ ! fi; \ ! fi; \ ! fi; \ ! done; \ done + + # Define this as empty until I found a useful application. + installcheck: + + uninstall: uninstall-exec uninstall-data + uninstall-exec: + uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext"; then \ ! for file in $(DISTFILES.common); do \ ! rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ ! done; \ else \ : ; \ fi + uninstall-data-no: + uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done check: all *************** *** 145,149 **** mostlyclean: ! rm -f core core.* *.pox $(PACKAGE).po *.new.po rm -fr *.o --- 239,244 ---- mostlyclean: ! rm -f remove-potcdate.sed ! rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o *************** *** 165,190 **** dist2: $(DISTFILES) dists="$(DISTFILES)"; \ for file in $$dists; do \ ! if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ ! cp -p $$dir/$$file $(distdir); \ done update-po: Makefile ! $(MAKE) $(PACKAGE).pot if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \ cd $(srcdir); \ ! catalogs='$(GMOFILES)'; \ ! for cat in $$catalogs; do \ ! cat=`basename $$cat`; \ ! lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ! echo "$$lang:"; \ ! if $(MSGMERGE) $$lang.po $(PACKAGE).pot -o $$lang.new.po; then \ ! mv -f $$lang.new.po $$lang.po; \ else \ ! echo "msgmerge for $$cat failed!"; \ ! rm -f $$lang.new.po; \ fi; \ ! done ! $(MAKE) update-gmo update-gmo: Makefile $(GMOFILES) --- 260,305 ---- dist2: $(DISTFILES) dists="$(DISTFILES)"; \ + if test -f $(srcdir)/ChangeLog; then dists="$$dists ChangeLog"; fi; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ ! if test -f $$file; then \ ! cp -p $$file $(distdir); \ ! else \ ! cp -p $(srcdir)/$$file $(distdir); \ ! fi; \ done update-po: Makefile ! $(MAKE) $(DOMAIN).pot-update ! $(MAKE) $(UPDATEPOFILES) ! $(MAKE) update-gmo ! ! # General rule for updating PO files. ! ! .nop.po-update: ! @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ ! if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ ! if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ ! rm -f $$tmpdir/$$lang.new.po; \ else \ ! if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ ! :; \ ! else \ ! echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ ! exit 1; \ ! fi; \ fi; \ ! else \ ! echo "msgmerge for $$lang.po failed!" 1>&2; \ ! rm -f $$tmpdir/$$lang.new.po; \ ! fi ! ! $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) *************** *** 195,198 **** --- 310,315 ---- && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ $(SHELL) ./config.status + + force: # Tell versions [3.59,3.63) of GNU make not to export all variables. Index: de.po =================================================================== RCS file: /cvsroot/lib/LIB/po/de.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** de.po 24 Aug 2002 18:51:07 -0000 1.2 --- de.po 24 Aug 2002 20:54:17 -0000 1.3 *************** *** 3,17 **** # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # - #: przedmioty.c:114 przedmioty.c:201 przedmioty.c:286 przedmioty.c:373 - #: przedmioty.c:461 przedmioty.c:546 - #, fuzzy msgid "" msgstr "" ! "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-08-24 18:54+0200\n" ! "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" [...3084 lines suppressed...] + "\"\n" + "Jeste¶ nieco rozdygotany i przestraszony, ale... co ci tam... To jak? " + "Idziesz ubiæ tego faceta? " + msgstr "" + + #: lib/zdarzenia:44 + msgid "" + "Z niebios ozwa³ siê g³os tymi s³owy:\n" + "\"Eeee... obiecywa³em ci co¶?... Nie?!... Niemo¿liwe, khe, khe... To nic nie " + "dostaniesz... Chyba, ¿e... Józeeeeeek! Masz ten miecz? To dawaj go tu!\"\n" + "Pod twoje zasyfione stopy uderzy³a b³yskawica. Odruchowo przenios³e¶ wzrok " + "na okopcone paznokcie i natrafi³e¶ na... miecz." + msgstr "" + + #: lib/zdarzenia:63 + msgid "" + "Dawca zdarzeñ odzywa siê tymi s³owy: \" Ha! Chcesz zabiæ dowódcê ¿o³nierzy! " + "To ja ci dam co¶, co ci powinno pomóc... I przepraszam, ¿e mówiê tak bez " + "sensu, ale jestem tylko postaci± testow± i czegó¿ mo¿na ode mnie wymagaæ?\"" + msgstr "" Index: en.po =================================================================== RCS file: /cvsroot/lib/LIB/po/en.po,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** en.po 24 Aug 2002 18:51:07 -0000 1.35 --- en.po 24 Aug 2002 20:54:17 -0000 1.36 *************** *** 2,2204 **** # Andrzej Oszer <os...@kk...>, 2000. # - #: przedmioty.c:114 przedmioty.c:201 przedmioty.c:286 przedmioty.c:373 - #: przedmioty.c:461 przedmioty.c:546 msgid "" msgstr "" ! "Project-Id-Version: 0,1\n" ! "POT-Creation-Date: 2002-08-24 18:54+0200\n" ! "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ! "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" [...5765 lines suppressed...] ! ! #: lib/zdarzenia:44 ! msgid "" ! "Z niebios ozwa³ siê g³os tymi s³owy:\n" ! "\"Eeee... obiecywa³em ci co¶?... Nie?!... Niemo¿liwe, khe, khe... To nic nie " ! "dostaniesz... Chyba, ¿e... Józeeeeeek! Masz ten miecz? To dawaj go tu!\"\n" ! "Pod twoje zasyfione stopy uderzy³a b³yskawica. Odruchowo przenios³e¶ wzrok " ! "na okopcone paznokcie i natrafi³e¶ na... miecz." ! msgstr "" ! ! #: lib/zdarzenia:63 ! msgid "" ! "Dawca zdarzeñ odzywa siê tymi s³owy: \" Ha! Chcesz zabiæ dowódcê ¿o³nierzy! " ! "To ja ci dam co¶, co ci powinno pomóc... I przepraszam, ¿e mówiê tak bez " ! "sensu, ale jestem tylko postaci± testow± i czegó¿ mo¿na ode mnie wymagaæ?\"" ! msgstr "" ! ! #, fuzzy ! #~ msgid "ko" ! #~ msgstr "o" Index: fr.po =================================================================== RCS file: /cvsroot/lib/LIB/po/fr.po,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** fr.po 24 Aug 2002 18:51:07 -0000 1.2 --- fr.po 24 Aug 2002 20:54:17 -0000 1.3 *************** *** 8,17 **** msgid "" msgstr "" ! "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-08-24 18:54+0200\n" ! "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" ! "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" ! "Language-Team: LANGUAGE <LL...@li...>\n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" --- 8,18 ---- msgid "" msgstr "" ! "Project-Id-Version: 0.1.67\n" ! "POT-Creation-Date: 2002-08-24 21:53+0200\n" ! "PO-Revision-Date: 2002-08-24 18:55+0200\n" ! "Last-Translator: Andrzej Oszer <prz...@pr...>\n" ! "Language-Team: \n" "MIME-Version: 1.0\n" ! "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" + |
|
From: <os...@us...> - 2002-08-24 20:54:21
|
Update of /cvsroot/lib/LIB/utils
In directory usw-pr-cvs1:/tmp/cvs-serv4325/utils
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/utils/Makefile.in,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** Makefile.in 24 Aug 2002 14:16:54 -0000 1.25
--- Makefile.in 24 Aug 2002 20:54:17 -0000 1.26
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 32,42 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ..
--- 34,40 ----
***************
*** 46,55 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 44,57 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 60,63 ****
--- 62,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 65,72 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 81,94 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
noinst_PROGRAMS = convks convp convpot convpotpoz convprzpoz convpul convsch convscha convstr convsw convter convtras convpreid convzd convmat ed gen join maped
INCLUDES = "-I../"
--- 90,104 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
noinst_PROGRAMS = convks convp convpot convpotpoz convprzpoz convpul convsch convscha convstr convsw convter convtras convpreid convzd convmat ed gen join maped
INCLUDES = "-I../"
***************
*** 112,439 ****
convscha_SOURCES = convscha.c fake.h
convpreid_SOURCES = convpreid.c fake.h
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../config2.h
! CONFIG_CLEAN_FILES =
! PROGRAMS = $(noinst_PROGRAMS)
!
! DEFS = @DEFS@ -I. -I$(srcdir) -I..
! CPPFLAGS = @CPPFLAGS@
! LDFLAGS = @LDFLAGS@
! LIBS = @LIBS@
! convks_OBJECTS = convks.o
convks_LDADD = $(LDADD)
! convks_DEPENDENCIES =
! convks_LDFLAGS =
! convp_OBJECTS = convp.o
convp_LDADD = $(LDADD)
! convp_DEPENDENCIES =
! convp_LDFLAGS =
! convpot_OBJECTS = convpot.o
convpot_LDADD = $(LDADD)
! convpot_DEPENDENCIES =
! convpot_LDFLAGS =
! convpotpoz_OBJECTS = convpotpoz.o
convpotpoz_LDADD = $(LDADD)
! convpotpoz_DEPENDENCIES =
! convpotpoz_LDFLAGS =
! convprzpoz_OBJECTS = convprzpoz.o
convprzpoz_LDADD = $(LDADD)
! convprzpoz_DEPENDENCIES =
! convprzpoz_LDFLAGS =
! convpul_OBJECTS = convpul.o
convpul_LDADD = $(LDADD)
! convpul_DEPENDENCIES =
! convpul_LDFLAGS =
! convsch_OBJECTS = convsch.o
convsch_LDADD = $(LDADD)
! convsch_DEPENDENCIES =
! convsch_LDFLAGS =
! convscha_OBJECTS = convscha.o
convscha_LDADD = $(LDADD)
! convscha_DEPENDENCIES =
! convscha_LDFLAGS =
! convstr_OBJECTS = convstr.o
convstr_LDADD = $(LDADD)
! convstr_DEPENDENCIES =
! convstr_LDFLAGS =
! convsw_OBJECTS = convsw.o
convsw_LDADD = $(LDADD)
! convsw_DEPENDENCIES =
! convsw_LDFLAGS =
! convter_OBJECTS = convter.o
convter_LDADD = $(LDADD)
! convter_DEPENDENCIES =
! convter_LDFLAGS =
! convtras_OBJECTS = convtras.o
convtras_LDADD = $(LDADD)
! convtras_DEPENDENCIES =
! convtras_LDFLAGS =
! convpreid_OBJECTS = convpreid.o
! convpreid_LDADD = $(LDADD)
! convpreid_DEPENDENCIES =
! convpreid_LDFLAGS =
! convzd_OBJECTS = convzd.o
convzd_LDADD = $(LDADD)
! convzd_DEPENDENCIES =
! convzd_LDFLAGS =
! convmat_OBJECTS = convmat.o
! convmat_LDADD = $(LDADD)
! convmat_DEPENDENCIES =
! convmat_LDFLAGS =
! ed_OBJECTS = ed.o
ed_LDADD = $(LDADD)
! ed_DEPENDENCIES =
! ed_LDFLAGS =
! gen_OBJECTS = gen.o
gen_LDADD = $(LDADD)
! gen_DEPENDENCIES =
! gen_LDFLAGS =
! join_OBJECTS = join.o
join_LDADD = $(LDADD)
! join_DEPENDENCIES =
! join_LDFLAGS =
! maped_OBJECTS = maped.o
maped_LDADD = $(LDADD)
! maped_DEPENDENCIES =
! maped_LDFLAGS =
! CFLAGS = @CFLAGS@
! COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
! CCLD = $(CC)
! LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
! DIST_COMMON = Makefile.am Makefile.in
!
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
! TAR = tar
! GZIP_ENV = --best
! DEP_FILES = .deps/convks.P .deps/convmat.P .deps/convp.P \
! .deps/convpot.P .deps/convpotpoz.P .deps/convpreid.P .deps/convprzpoz.P \
! .deps/convpul.P .deps/convsch.P .deps/convscha.P .deps/convstr.P \
! .deps/convsw.P .deps/convter.P .deps/convtras.P .deps/convzd.P \
! .deps/ed.P .deps/gen.P .deps/join.P .deps/maped.P
! SOURCES = $(convks_SOURCES) $(convp_SOURCES) $(convpot_SOURCES) $(convpotpoz_SOURCES) $(convprzpoz_SOURCES) $(convpul_SOURCES) $(convsch_SOURCES) $(convscha_SOURCES) $(convstr_SOURCES) $(convsw_SOURCES) $(convter_SOURCES) $(convtras_SOURCES) $(convpreid_SOURCES) $(convzd_SOURCES) $(convmat_SOURCES) $(ed_SOURCES) $(gen_SOURCES) $(join_SOURCES) $(maped_SOURCES)
! OBJECTS = $(convks_OBJECTS) $(convp_OBJECTS) $(convpot_OBJECTS) $(convpotpoz_OBJECTS) $(convprzpoz_OBJECTS) $(convpul_OBJECTS) $(convsch_OBJECTS) $(convscha_OBJECTS) $(convstr_OBJECTS) $(convsw_OBJECTS) $(convter_OBJECTS) $(convtras_OBJECTS) $(convpreid_OBJECTS) $(convzd_OBJECTS) $(convmat_OBJECTS) $(ed_OBJECTS) $(gen_OBJECTS) $(join_OBJECTS) $(maped_OBJECTS)
- all: all-redirect
.SUFFIXES:
! .SUFFIXES: .S .c .o .s
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu utils/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
!
! mostlyclean-noinstPROGRAMS:
clean-noinstPROGRAMS:
-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
!
! distclean-noinstPROGRAMS:
!
! maintainer-clean-noinstPROGRAMS:
!
! .s.o:
! $(COMPILE) -c $<
!
! .S.o:
! $(COMPILE) -c $<
!
! mostlyclean-compile:
! -rm -f *.o core *.core
!
! clean-compile:
!
! distclean-compile:
! -rm -f *.tab.c
!
! maintainer-clean-compile:
!
! convks: $(convks_OBJECTS) $(convks_DEPENDENCIES)
! @rm -f convks
$(LINK) $(convks_LDFLAGS) $(convks_OBJECTS) $(convks_LDADD) $(LIBS)
!
! convp: $(convp_OBJECTS) $(convp_DEPENDENCIES)
! @rm -f convp
$(LINK) $(convp_LDFLAGS) $(convp_OBJECTS) $(convp_LDADD) $(LIBS)
!
! convpot: $(convpot_OBJECTS) $(convpot_DEPENDENCIES)
! @rm -f convpot
$(LINK) $(convpot_LDFLAGS) $(convpot_OBJECTS) $(convpot_LDADD) $(LIBS)
!
! convpotpoz: $(convpotpoz_OBJECTS) $(convpotpoz_DEPENDENCIES)
! @rm -f convpotpoz
$(LINK) $(convpotpoz_LDFLAGS) $(convpotpoz_OBJECTS) $(convpotpoz_LDADD) $(LIBS)
!
! convprzpoz: $(convprzpoz_OBJECTS) $(convprzpoz_DEPENDENCIES)
! @rm -f convprzpoz
$(LINK) $(convprzpoz_LDFLAGS) $(convprzpoz_OBJECTS) $(convprzpoz_LDADD) $(LIBS)
!
! convpul: $(convpul_OBJECTS) $(convpul_DEPENDENCIES)
! @rm -f convpul
$(LINK) $(convpul_LDFLAGS) $(convpul_OBJECTS) $(convpul_LDADD) $(LIBS)
!
! convsch: $(convsch_OBJECTS) $(convsch_DEPENDENCIES)
! @rm -f convsch
$(LINK) $(convsch_LDFLAGS) $(convsch_OBJECTS) $(convsch_LDADD) $(LIBS)
!
! convscha: $(convscha_OBJECTS) $(convscha_DEPENDENCIES)
! @rm -f convscha
$(LINK) $(convscha_LDFLAGS) $(convscha_OBJECTS) $(convscha_LDADD) $(LIBS)
!
! convstr: $(convstr_OBJECTS) $(convstr_DEPENDENCIES)
! @rm -f convstr
$(LINK) $(convstr_LDFLAGS) $(convstr_OBJECTS) $(convstr_LDADD) $(LIBS)
!
! convsw: $(convsw_OBJECTS) $(convsw_DEPENDENCIES)
! @rm -f convsw
$(LINK) $(convsw_LDFLAGS) $(convsw_OBJECTS) $(convsw_LDADD) $(LIBS)
!
! convter: $(convter_OBJECTS) $(convter_DEPENDENCIES)
! @rm -f convter
$(LINK) $(convter_LDFLAGS) $(convter_OBJECTS) $(convter_LDADD) $(LIBS)
!
! convtras: $(convtras_OBJECTS) $(convtras_DEPENDENCIES)
! @rm -f convtras
$(LINK) $(convtras_LDFLAGS) $(convtras_OBJECTS) $(convtras_LDADD) $(LIBS)
! convpreid: $(convpreid_OBJECTS) $(convpreid_DEPENDENCIES)
! @rm -f convpreid
! $(LINK) $(convpreid_LDFLAGS) $(convpreid_OBJECTS) $(convpreid_LDADD) $(LIBS)
! convzd: $(convzd_OBJECTS) $(convzd_DEPENDENCIES)
! @rm -f convzd
! $(LINK) $(convzd_LDFLAGS) $(convzd_OBJECTS) $(convzd_LDADD) $(LIBS)
! convmat: $(convmat_OBJECTS) $(convmat_DEPENDENCIES)
! @rm -f convmat
! $(LINK) $(convmat_LDFLAGS) $(convmat_OBJECTS) $(convmat_LDADD) $(LIBS)
! ed: $(ed_OBJECTS) $(ed_DEPENDENCIES)
! @rm -f ed
! $(LINK) $(ed_LDFLAGS) $(ed_OBJECTS) $(ed_LDADD) $(LIBS)
! gen: $(gen_OBJECTS) $(gen_DEPENDENCIES)
! @rm -f gen
! $(LINK) $(gen_LDFLAGS) $(gen_OBJECTS) $(gen_LDADD) $(LIBS)
! join: $(join_OBJECTS) $(join_DEPENDENCIES)
! @rm -f join
! $(LINK) $(join_LDFLAGS) $(join_OBJECTS) $(join_LDADD) $(LIBS)
! maped: $(maped_OBJECTS) $(maped_DEPENDENCIES)
! @rm -f maped
! $(LINK) $(maped_LDFLAGS) $(maped_OBJECTS) $(maped_LDADD) $(LIBS)
tags: TAGS
! ID: $(HEADERS) $(SOURCES) $(LISP)
! list='$(SOURCES) $(HEADERS)'; \
! unique=`for i in $$list; do echo $$i; done | \
! awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! here=`pwd` && cd $(srcdir) \
! && mkid -f$$here/ID $$unique $(LISP)
! TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
tags=; \
here=`pwd`; \
! list='$(SOURCES) $(HEADERS)'; \
! unique=`for i in $$list; do echo $$i; done | \
! awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
! || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags $$unique $(LISP))
!
! mostlyclean-tags:
! clean-tags:
distclean-tags:
! -rm -f TAGS ID
!
! maintainer-clean-tags:
!
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
! subdir = utils
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu utils/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
-
- DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
-
- -include $(DEP_FILES)
-
- mostlyclean-depend:
-
- clean-depend:
-
- distclean-depend:
- -rm -rf .deps
-
- maintainer-clean-depend:
-
- %.o: %.c
- @echo '$(COMPILE) -c $<'; \
- $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
- @-cp .deps/$(*F).pp .deps/$(*F).P; \
- tr ' ' '\012' < .deps/$(*F).pp \
- | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
- >> .deps/$(*F).P; \
- rm .deps/$(*F).pp
-
- %.lo: %.c
- @echo '$(LTCOMPILE) -c $<'; \
- $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
- @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
- < .deps/$(*F).pp > .deps/$(*F).P; \
- tr ' ' '\012' < .deps/$(*F).pp \
- | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
- >> .deps/$(*F).P; \
- rm -f .deps/$(*F).pp
- info-am:
- info: info-am
- dvi-am:
- dvi: dvi-am
check-am: all-am
check: check-am
! installcheck-am:
! installcheck: installcheck-am
! install-exec-am:
! install-exec: install-exec-am
! install-data-am:
! install-data: install-data-am
- install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
! uninstall-am:
uninstall: uninstall-am
- all-am: Makefile $(PROGRAMS)
- all-redirect: all-am
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs:
mostlyclean-generic:
--- 122,458 ----
convscha_SOURCES = convscha.c fake.h
convpreid_SOURCES = convpreid.c fake.h
+ subdir = utils
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! noinst_PROGRAMS = convks$(EXEEXT) convp$(EXEEXT) convpot$(EXEEXT) \
! convpotpoz$(EXEEXT) convprzpoz$(EXEEXT) convpul$(EXEEXT) \
! convsch$(EXEEXT) convscha$(EXEEXT) convstr$(EXEEXT) \
! convsw$(EXEEXT) convter$(EXEEXT) convtras$(EXEEXT) \
! convpreid$(EXEEXT) convzd$(EXEEXT) convmat$(EXEEXT) ed$(EXEEXT) \
! gen$(EXEEXT) join$(EXEEXT) maped$(EXEEXT)
! PROGRAMS = $(noinst_PROGRAMS)
! am_convks_OBJECTS = convks.$(OBJEXT)
! convks_OBJECTS = $(am_convks_OBJECTS)
convks_LDADD = $(LDADD)
! convks_DEPENDENCIES =
! convks_LDFLAGS =
! am_convmat_OBJECTS = convmat.$(OBJEXT)
! convmat_OBJECTS = $(am_convmat_OBJECTS)
! convmat_LDADD = $(LDADD)
! convmat_DEPENDENCIES =
! convmat_LDFLAGS =
! am_convp_OBJECTS = convp.$(OBJEXT)
! convp_OBJECTS = $(am_convp_OBJECTS)
convp_LDADD = $(LDADD)
! convp_DEPENDENCIES =
! convp_LDFLAGS =
! am_convpot_OBJECTS = convpot.$(OBJEXT)
! convpot_OBJECTS = $(am_convpot_OBJECTS)
convpot_LDADD = $(LDADD)
! convpot_DEPENDENCIES =
! convpot_LDFLAGS =
! am_convpotpoz_OBJECTS = convpotpoz.$(OBJEXT)
! convpotpoz_OBJECTS = $(am_convpotpoz_OBJECTS)
convpotpoz_LDADD = $(LDADD)
! convpotpoz_DEPENDENCIES =
! convpotpoz_LDFLAGS =
! am_convpreid_OBJECTS = convpreid.$(OBJEXT)
! convpreid_OBJECTS = $(am_convpreid_OBJECTS)
! convpreid_LDADD = $(LDADD)
! convpreid_DEPENDENCIES =
! convpreid_LDFLAGS =
! am_convprzpoz_OBJECTS = convprzpoz.$(OBJEXT)
! convprzpoz_OBJECTS = $(am_convprzpoz_OBJECTS)
convprzpoz_LDADD = $(LDADD)
! convprzpoz_DEPENDENCIES =
! convprzpoz_LDFLAGS =
! am_convpul_OBJECTS = convpul.$(OBJEXT)
! convpul_OBJECTS = $(am_convpul_OBJECTS)
convpul_LDADD = $(LDADD)
! convpul_DEPENDENCIES =
! convpul_LDFLAGS =
! am_convsch_OBJECTS = convsch.$(OBJEXT)
! convsch_OBJECTS = $(am_convsch_OBJECTS)
convsch_LDADD = $(LDADD)
! convsch_DEPENDENCIES =
! convsch_LDFLAGS =
! am_convscha_OBJECTS = convscha.$(OBJEXT)
! convscha_OBJECTS = $(am_convscha_OBJECTS)
convscha_LDADD = $(LDADD)
! convscha_DEPENDENCIES =
! convscha_LDFLAGS =
! am_convstr_OBJECTS = convstr.$(OBJEXT)
! convstr_OBJECTS = $(am_convstr_OBJECTS)
convstr_LDADD = $(LDADD)
! convstr_DEPENDENCIES =
! convstr_LDFLAGS =
! am_convsw_OBJECTS = convsw.$(OBJEXT)
! convsw_OBJECTS = $(am_convsw_OBJECTS)
convsw_LDADD = $(LDADD)
! convsw_DEPENDENCIES =
! convsw_LDFLAGS =
! am_convter_OBJECTS = convter.$(OBJEXT)
! convter_OBJECTS = $(am_convter_OBJECTS)
convter_LDADD = $(LDADD)
! convter_DEPENDENCIES =
! convter_LDFLAGS =
! am_convtras_OBJECTS = convtras.$(OBJEXT)
! convtras_OBJECTS = $(am_convtras_OBJECTS)
convtras_LDADD = $(LDADD)
! convtras_DEPENDENCIES =
! convtras_LDFLAGS =
! am_convzd_OBJECTS = convzd.$(OBJEXT)
! convzd_OBJECTS = $(am_convzd_OBJECTS)
convzd_LDADD = $(LDADD)
! convzd_DEPENDENCIES =
! convzd_LDFLAGS =
! am_ed_OBJECTS = ed.$(OBJEXT)
! ed_OBJECTS = $(am_ed_OBJECTS)
ed_LDADD = $(LDADD)
! ed_DEPENDENCIES =
! ed_LDFLAGS =
! am_gen_OBJECTS = gen.$(OBJEXT)
! gen_OBJECTS = $(am_gen_OBJECTS)
gen_LDADD = $(LDADD)
! gen_DEPENDENCIES =
! gen_LDFLAGS =
! am_join_OBJECTS = join.$(OBJEXT)
! join_OBJECTS = $(am_join_OBJECTS)
join_LDADD = $(LDADD)
! join_DEPENDENCIES =
! join_LDFLAGS =
! am_maped_OBJECTS = maped.$(OBJEXT)
! maped_OBJECTS = $(am_maped_OBJECTS)
maped_LDADD = $(LDADD)
! maped_DEPENDENCIES =
! maped_LDFLAGS =
! DEFS = @DEFS@
! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
! CPPFLAGS = @CPPFLAGS@
! LDFLAGS = @LDFLAGS@
! LIBS = @LIBS@
! depcomp = $(SHELL) $(top_srcdir)/depcomp
! am__depfiles_maybe = depfiles
! @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/convks.Po ./$(DEPDIR)/convmat.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convp.Po ./$(DEPDIR)/convpot.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convpotpoz.Po ./$(DEPDIR)/convpreid.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convprzpoz.Po ./$(DEPDIR)/convpul.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convsch.Po ./$(DEPDIR)/convscha.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convstr.Po ./$(DEPDIR)/convsw.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convter.Po ./$(DEPDIR)/convtras.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/convzd.Po ./$(DEPDIR)/ed.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/gen.Po ./$(DEPDIR)/join.Po \
! @AMDEP_TRUE@ ./$(DEPDIR)/maped.Po
! COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
! $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
! CCLD = $(CC)
! LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
! CFLAGS = @CFLAGS@
! DIST_SOURCES = $(convks_SOURCES) $(convmat_SOURCES) $(convp_SOURCES) \
! $(convpot_SOURCES) $(convpotpoz_SOURCES) $(convpreid_SOURCES) \
! $(convprzpoz_SOURCES) $(convpul_SOURCES) $(convsch_SOURCES) \
! $(convscha_SOURCES) $(convstr_SOURCES) $(convsw_SOURCES) \
! $(convter_SOURCES) $(convtras_SOURCES) $(convzd_SOURCES) \
! $(ed_SOURCES) $(gen_SOURCES) $(join_SOURCES) $(maped_SOURCES)
! DIST_COMMON = Makefile.am Makefile.in
! SOURCES = $(convks_SOURCES) $(convmat_SOURCES) $(convp_SOURCES) $(convpot_SOURCES) $(convpotpoz_SOURCES) $(convpreid_SOURCES) $(convprzpoz_SOURCES) $(convpul_SOURCES) $(convsch_SOURCES) $(convscha_SOURCES) $(convstr_SOURCES) $(convsw_SOURCES) $(convter_SOURCES) $(convtras_SOURCES) $(convzd_SOURCES) $(ed_SOURCES) $(gen_SOURCES) $(join_SOURCES) $(maped_SOURCES)
! all: all-am
.SUFFIXES:
! .SUFFIXES: .c .o .obj
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu utils/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
clean-noinstPROGRAMS:
-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
! convks$(EXEEXT): $(convks_OBJECTS) $(convks_DEPENDENCIES)
! @rm -f convks$(EXEEXT)
$(LINK) $(convks_LDFLAGS) $(convks_OBJECTS) $(convks_LDADD) $(LIBS)
! convmat$(EXEEXT): $(convmat_OBJECTS) $(convmat_DEPENDENCIES)
! @rm -f convmat$(EXEEXT)
! $(LINK) $(convmat_LDFLAGS) $(convmat_OBJECTS) $(convmat_LDADD) $(LIBS)
! convp$(EXEEXT): $(convp_OBJECTS) $(convp_DEPENDENCIES)
! @rm -f convp$(EXEEXT)
$(LINK) $(convp_LDFLAGS) $(convp_OBJECTS) $(convp_LDADD) $(LIBS)
! convpot$(EXEEXT): $(convpot_OBJECTS) $(convpot_DEPENDENCIES)
! @rm -f convpot$(EXEEXT)
$(LINK) $(convpot_LDFLAGS) $(convpot_OBJECTS) $(convpot_LDADD) $(LIBS)
! convpotpoz$(EXEEXT): $(convpotpoz_OBJECTS) $(convpotpoz_DEPENDENCIES)
! @rm -f convpotpoz$(EXEEXT)
$(LINK) $(convpotpoz_LDFLAGS) $(convpotpoz_OBJECTS) $(convpotpoz_LDADD) $(LIBS)
! convpreid$(EXEEXT): $(convpreid_OBJECTS) $(convpreid_DEPENDENCIES)
! @rm -f convpreid$(EXEEXT)
! $(LINK) $(convpreid_LDFLAGS) $(convpreid_OBJECTS) $(convpreid_LDADD) $(LIBS)
! convprzpoz$(EXEEXT): $(convprzpoz_OBJECTS) $(convprzpoz_DEPENDENCIES)
! @rm -f convprzpoz$(EXEEXT)
$(LINK) $(convprzpoz_LDFLAGS) $(convprzpoz_OBJECTS) $(convprzpoz_LDADD) $(LIBS)
! convpul$(EXEEXT): $(convpul_OBJECTS) $(convpul_DEPENDENCIES)
! @rm -f convpul$(EXEEXT)
$(LINK) $(convpul_LDFLAGS) $(convpul_OBJECTS) $(convpul_LDADD) $(LIBS)
! convsch$(EXEEXT): $(convsch_OBJECTS) $(convsch_DEPENDENCIES)
! @rm -f convsch$(EXEEXT)
$(LINK) $(convsch_LDFLAGS) $(convsch_OBJECTS) $(convsch_LDADD) $(LIBS)
! convscha$(EXEEXT): $(convscha_OBJECTS) $(convscha_DEPENDENCIES)
! @rm -f convscha$(EXEEXT)
$(LINK) $(convscha_LDFLAGS) $(convscha_OBJECTS) $(convscha_LDADD) $(LIBS)
! convstr$(EXEEXT): $(convstr_OBJECTS) $(convstr_DEPENDENCIES)
! @rm -f convstr$(EXEEXT)
$(LINK) $(convstr_LDFLAGS) $(convstr_OBJECTS) $(convstr_LDADD) $(LIBS)
! convsw$(EXEEXT): $(convsw_OBJECTS) $(convsw_DEPENDENCIES)
! @rm -f convsw$(EXEEXT)
$(LINK) $(convsw_LDFLAGS) $(convsw_OBJECTS) $(convsw_LDADD) $(LIBS)
! convter$(EXEEXT): $(convter_OBJECTS) $(convter_DEPENDENCIES)
! @rm -f convter$(EXEEXT)
$(LINK) $(convter_LDFLAGS) $(convter_OBJECTS) $(convter_LDADD) $(LIBS)
! convtras$(EXEEXT): $(convtras_OBJECTS) $(convtras_DEPENDENCIES)
! @rm -f convtras$(EXEEXT)
$(LINK) $(convtras_LDFLAGS) $(convtras_OBJECTS) $(convtras_LDADD) $(LIBS)
+ convzd$(EXEEXT): $(convzd_OBJECTS) $(convzd_DEPENDENCIES)
+ @rm -f convzd$(EXEEXT)
+ $(LINK) $(convzd_LDFLAGS) $(convzd_OBJECTS) $(convzd_LDADD) $(LIBS)
+ ed$(EXEEXT): $(ed_OBJECTS) $(ed_DEPENDENCIES)
+ @rm -f ed$(EXEEXT)
+ $(LINK) $(ed_LDFLAGS) $(ed_OBJECTS) $(ed_LDADD) $(LIBS)
+ gen$(EXEEXT): $(gen_OBJECTS) $(gen_DEPENDENCIES)
+ @rm -f gen$(EXEEXT)
+ $(LINK) $(gen_LDFLAGS) $(gen_OBJECTS) $(gen_LDADD) $(LIBS)
+ join$(EXEEXT): $(join_OBJECTS) $(join_DEPENDENCIES)
+ @rm -f join$(EXEEXT)
+ $(LINK) $(join_LDFLAGS) $(join_OBJECTS) $(join_LDADD) $(LIBS)
+ maped$(EXEEXT): $(maped_OBJECTS) $(maped_DEPENDENCIES)
+ @rm -f maped$(EXEEXT)
+ $(LINK) $(maped_LDFLAGS) $(maped_OBJECTS) $(maped_LDADD) $(LIBS)
! mostlyclean-compile:
! -rm -f *.$(OBJEXT) core *.core
! distclean-compile:
! -rm -f *.tab.c
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convks.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convmat.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convp.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convpot.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convpotpoz.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convpreid.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convprzpoz.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convpul.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convsch.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convscha.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convstr.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convsw.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convter.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convtras.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/convzd.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gen.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/join.Po@am__quote@
! @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maped.Po@am__quote@
! distclean-depend:
! -rm -rf ./$(DEPDIR)
! .c.o:
! @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
! @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
! @AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
! $(COMPILE) -c `test -f '$<' || echo '$(srcdir)/'`$<
! .c.obj:
! @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
! @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
! @AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
! $(COMPILE) -c `cygpath -w $<`
! CCDEPMODE = @CCDEPMODE@
! uninstall-info-am:
! ETAGS = etags
! ETAGSFLAGS =
tags: TAGS
! ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
! list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
! unique=`for i in $$list; do \
! if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
! done | \
! $(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! mkid -fID $$unique
! TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
! $(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
! list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
! unique=`for i in $$list; do \
! if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
! done | \
! $(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! test -z "$(ETAGS_ARGS)$$tags$$unique" \
! || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
! $$tags $$unique
! GTAGS:
! here=`$(am__cd) $(top_builddir) && pwd` \
! && cd $(top_srcdir) \
! && gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
! -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
! DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
check-am: all-am
check: check-am
! all-am: Makefile $(PROGRAMS)
! installdirs:
install: install-am
! install-exec: install-exec-am
! install-data: install-data-am
uninstall: uninstall-am
+ install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-am
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 442,484 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-noinstPROGRAMS mostlyclean-compile \
! mostlyclean-tags mostlyclean-depend mostlyclean-generic
! mostlyclean: mostlyclean-am
! clean-am: clean-noinstPROGRAMS clean-compile clean-tags clean-depend \
! clean-generic mostlyclean-am
! clean: clean-am
! distclean-am: distclean-noinstPROGRAMS distclean-compile distclean-tags \
! distclean-depend distclean-generic clean-am
! distclean: distclean-am
! maintainer-clean-am: maintainer-clean-noinstPROGRAMS \
! maintainer-clean-compile maintainer-clean-tags \
! maintainer-clean-depend maintainer-clean-generic \
! distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
! .PHONY: mostlyclean-noinstPROGRAMS distclean-noinstPROGRAMS \
! clean-noinstPROGRAMS maintainer-clean-noinstPROGRAMS \
! mostlyclean-compile distclean-compile clean-compile \
! maintainer-clean-compile tags mostlyclean-tags distclean-tags \
! clean-tags maintainer-clean-tags distdir mostlyclean-depend \
! distclean-depend clean-depend maintainer-clean-depend info-am info \
! dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
! install-exec install-data-am install-data install-am install \
! uninstall-am uninstall all-redirect all-am all installdirs \
! mostlyclean-generic distclean-generic clean-generic \
! maintainer-clean-generic clean mostlyclean distclean maintainer-clean
# Tell versions [3.59,3.63) of GNU make to not export all variables.
--- 461,515 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-am
! clean-am: clean-generic clean-noinstPROGRAMS mostlyclean-am
! distclean: distclean-am
! distclean-am: clean-am distclean-compile distclean-depend \
! distclean-generic distclean-tags
! dvi: dvi-am
! dvi-am:
! info: info-am
!
! info-am:
!
! install-data-am:
!
! install-exec-am:
!
! install-info: install-info-am
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-am
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-am
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic
+
+ uninstall-am: uninstall-info-am
+
+ .PHONY: GTAGS all all-am check check-am clean clean-generic \
+ clean-noinstPROGRAMS distclean distclean-compile \
+ distclean-depend distclean-generic distclean-tags distdir dvi \
+ dvi-am info info-am install install-am install-data \
+ install-data-am install-exec install-exec-am install-info \
+ install-info-am install-man install-strip installcheck \
+ installcheck-am installdirs maintainer-clean \
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
+ mostlyclean-generic tags uninstall uninstall-am \
+ uninstall-info-am
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
From: <os...@us...> - 2002-08-24 20:54:21
|
Update of /cvsroot/lib/LIB/lib/poziomy
In directory usw-pr-cvs1:/tmp/cvs-serv4325/lib/poziomy
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/lib/poziomy/Makefile.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Makefile.in 24 Aug 2002 14:16:53 -0000 1.10
--- Makefile.in 24 Aug 2002 20:54:16 -0000 1.11
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 32,42 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ../..
--- 34,40 ----
***************
*** 46,55 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 44,57 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 60,63 ****
--- 62,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 65,72 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 81,114 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
SUBDIRS = MSTO WIEZ rozne
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../../config2.h
! CONFIG_CLEAN_FILES =
! DIST_COMMON = Makefile.am Makefile.in
!
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
- TAR = tar
- GZIP_ENV = --best
- all: all-redirect
.SUFFIXES:
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/poziomy/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
# This directory's subdirectories are mostly independent; you can cd
--- 90,126 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
SUBDIRS = MSTO WIEZ rozne
+ subdir = lib/poziomy
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! DIST_SOURCES =
! RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
! uninstall-info-recursive all-recursive install-data-recursive \
! install-exec-recursive installdirs-recursive install-recursive \
! uninstall-recursive check-recursive installcheck-recursive
! DIST_COMMON = Makefile.am Makefile.in
! DIST_SUBDIRS = $(SUBDIRS)
! all: all-recursive
.SUFFIXES:
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu lib/poziomy/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
! uninstall-info-am:
# This directory's subdirectories are mostly independent; you can cd
***************
*** 118,128 ****
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
!
! @SET_MAKE@
!
! all-recursive install-data-recursive install-exec-recursive \
! installdirs-recursive install-recursive uninstall-recursive \
! check-recursive installcheck-recursive info-recursive dvi-recursive:
! @set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
--- 130,135 ----
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
! $(RECURSIVE_TARGETS):
! @set fnord $$MAKEFLAGS; amf=$$2; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
***************
*** 144,154 ****
mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
! @set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
! rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
! rev="$$subdir $$rev"; \
! test "$$subdir" != "." || dot_seen=yes; \
done; \
! test "$$dot_seen" = "no" && rev=". $$rev"; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
--- 151,166 ----
mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
! @set fnord $$MAKEFLAGS; amf=$$2; \
dot_seen=no; \
! case "$@" in \
! distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
! *) list='$(SUBDIRS)' ;; \
! esac; \
! rev=''; for subdir in $$list; do \
! if test "$$subdir" = "."; then :; else \
! rev="$$subdir $$rev"; \
! fi; \
done; \
! rev="$$rev ."; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
***************
*** 167,261 ****
done
tags: TAGS
! ID: $(HEADERS) $(SOURCES) $(LISP)
! list='$(SOURCES) $(HEADERS)'; \
! unique=`for i in $$list; do echo $$i; done | \
! awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! here=`pwd` && cd $(srcdir) \
! && mkid -f$$here/ID $$unique $(LISP)
! TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
! if test "$$subdir" = .; then :; else \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
! fi; \
done; \
! list='$(SOURCES) $(HEADERS)'; \
! unique=`for i in $$list; do echo $$i; done | \
! awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
! || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags $$unique $(LISP))
!
! mostlyclean-tags:
! clean-tags:
distclean-tags:
! -rm -f TAGS ID
!
! maintainer-clean-tags:
!
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
! subdir = lib/poziomy
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu lib/poziomy/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
! for subdir in $(SUBDIRS); do \
if test "$$subdir" = .; then :; else \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
! chmod 777 $(distdir)/$$subdir; \
! (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
|| exit 1; \
fi; \
done
- info-am:
- info: info-recursive
- dvi-am:
- dvi: dvi-recursive
check-am: all-am
check: check-recursive
! installcheck-am:
! installcheck: installcheck-recursive
! install-exec-am:
! install-exec: install-exec-recursive
! install-data-am:
install-data: install-data-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
- install: install-recursive
- uninstall-am:
- uninstall: uninstall-recursive
- all-am: Makefile
- all-redirect: all-recursive
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs: installdirs-recursive
- installdirs-am:
-
mostlyclean-generic:
--- 179,281 ----
done
+ ETAGS = etags
+ ETAGSFLAGS =
+
tags: TAGS
! ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
! list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
! unique=`for i in $$list; do \
! if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
! done | \
! $(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! mkid -fID $$unique
! TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
! $(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
! if test "$$subdir" = .; then :; else \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
! fi; \
done; \
! list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
! unique=`for i in $$list; do \
! if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
! done | \
! $(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! test -z "$(ETAGS_ARGS)$$tags$$unique" \
! || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
! $$tags $$unique
! GTAGS:
! here=`$(am__cd) $(top_builddir) && pwd` \
! && cd $(top_srcdir) \
! && gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
! -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
! DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ../..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
! list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
! (cd $$subdir && \
! $(MAKE) $(AM_MAKEFLAGS) \
! top_distdir="$(top_distdir)" \
! distdir=../$(distdir)/$$subdir \
! distdir) \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-recursive
! all-am: Makefile
! installdirs: installdirs-recursive
! installdirs-am:
! install: install-recursive
! install-exec: install-exec-recursive
install-data: install-data-recursive
+ uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-recursive
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 264,302 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-tags mostlyclean-generic
! mostlyclean: mostlyclean-recursive
! clean-am: clean-tags clean-generic mostlyclean-am
! clean: clean-recursive
! distclean-am: distclean-tags distclean-generic clean-am
! distclean: distclean-recursive
! maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
! distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-recursive
! .PHONY: install-data-recursive uninstall-data-recursive \
! install-exec-recursive uninstall-exec-recursive installdirs-recursive \
! uninstalldirs-recursive all-recursive check-recursive \
! installcheck-recursive info-recursive dvi-recursive \
! mostlyclean-recursive distclean-recursive clean-recursive \
! maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
! distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
! dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
! install-exec install-data-am install-data install-am install \
! uninstall-am uninstall all-redirect all-am all installdirs-am \
! installdirs mostlyclean-generic distclean-generic clean-generic \
! maintainer-clean-generic clean mostlyclean distclean maintainer-clean
# Tell versions [3.59,3.63) of GNU make to not export all variables.
--- 284,343 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-recursive
! clean-am: clean-generic mostlyclean-am
! distclean: distclean-recursive
! distclean-am: clean-am distclean-generic distclean-tags
! dvi: dvi-recursive
! dvi-am:
! info: info-recursive
!
! info-am:
!
! install-data-am:
!
! install-exec-am:
!
! install-info: install-info-recursive
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-recursive
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-recursive
!
! mostlyclean-am: mostlyclean-generic
!
! uninstall-am: uninstall-info-am
!
! uninstall-info: uninstall-info-recursive
+ .PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
+ clean-generic clean-recursive distclean distclean-generic \
+ distclean-recursive distclean-tags distdir dvi dvi-am \
+ dvi-recursive info info-am info-recursive install install-am \
+ install-data install-data-am install-data-recursive \
+ install-exec install-exec-am install-exec-recursive \
+ install-info install-info-am install-info-recursive install-man \
+ install-recursive install-strip installcheck installcheck-am \
+ installdirs installdirs-am installdirs-recursive \
+ maintainer-clean maintainer-clean-generic \
+ maintainer-clean-recursive mostlyclean mostlyclean-generic \
+ mostlyclean-recursive tags tags-recursive uninstall \
+ uninstall-am uninstall-info-am uninstall-info-recursive \
+ uninstall-recursive
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
From: <os...@us...> - 2002-08-24 20:54:20
|
Update of /cvsroot/lib/LIB
In directory usw-pr-cvs1:/tmp/cvs-serv4325
Modified Files:
ABOUT-NLS ChangeLog Makefile.am Makefile.in aclocal.m4
configure configure.in missing mkinstalldirs ostatnia_zmiana
Added Files:
config.rpath depcomp
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
--- NEW FILE: config.rpath ---
#! /bin/sh
# Output a system dependent set of variables, describing how to set the
# run time search path of shared libraries in an executable.
#
# Copyright 1996-2002 Free Software Foundation, Inc.
# Taken from GNU libtool, 2001
# Originally by Gordon Matzigkeit <go...@gn...>, 1996
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
#
# The first argument passed to this file is the canonical host specification,
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
# or
# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
# should be set by the caller.
#
# The set of defined variables is at the end of this script.
# All known linkers require a `.a' archive for static linking (except M$VC,
# which needs '.lib').
libext=a
shlibext=
host="$1"
host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
wl=
if test "$GCC" = yes; then
wl='-Wl,'
else
case "$host_os" in
aix3* | aix4* | aix5*)
wl='-Wl,'
;;
hpux9* | hpux10* | hpux11*)
wl='-Wl,'
;;
irix5* | irix6*)
wl='-Wl,'
;;
linux*)
echo '__INTEL_COMPILER' > conftest.$ac_ext
if $CC -E conftest.$ac_ext >/dev/null | grep __INTEL_COMPILER >/dev/null
then
:
else
# Intel icc
wl='-Qoption,ld,'
fi
;;
osf3* | osf4* | osf5*)
wl='-Wl,'
;;
solaris*)
wl='-Wl,'
;;
sunos4*)
wl='-Qoption ld '
;;
sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
if test "x$host_vendor" = xsni; then
wl='-LD'
else
wl='-Wl,'
fi
;;
esac
fi
hardcode_libdir_flag_spec=
hardcode_libdir_separator=
hardcode_direct=no
hardcode_minus_L=no
case "$host_os" in
cygwin* | mingw* | pw32*)
# FIXME: the MSVC++ port hasn't been tested in a loooong time
# When not using gcc, we currently assume that we are using
# Microsoft Visual C++.
if test "$GCC" != yes; then
with_gnu_ld=no
fi
;;
openbsd*)
with_gnu_ld=no
;;
esac
ld_shlibs=yes
if test "$with_gnu_ld" = yes; then
case "$host_os" in
aix3* | aix4* | aix5*)
# On AIX, the GNU linker is very broken
ld_shlibs=no
;;
amigaos*)
hardcode_libdir_flag_spec='-L$libdir'
hardcode_minus_L=yes
# Samuel A. Falvo II <kc...@do...> reports
# that the semantics of dynamic libraries on AmigaOS, at least up
# to version 4, is to share data among multiple programs linked
# with the same dynamic library. Since this doesn't match the
# behavior of shared libraries on other platforms, we can use
# them.
ld_shlibs=no
;;
beos*)
if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
:
else
ld_shlibs=no
fi
;;
cygwin* | mingw* | pw32*)
# hardcode_libdir_flag_spec is actually meaningless, as there is
# no search path for DLLs.
hardcode_libdir_flag_spec='-L$libdir'
;;
solaris* | sysv5*)
if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
ld_shlibs=no
elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
:
else
ld_shlibs=no
fi
;;
sunos4*)
hardcode_direct=yes
;;
*)
if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
:
else
ld_shlibs=no
fi
;;
esac
if test "$ld_shlibs" = yes; then
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
fi
else
case "$host_os" in
aix3*)
# Note: this linker hardcodes the directories in LIBPATH if there
# are no directories specified by -L.
hardcode_minus_L=yes
if test "$GCC" = yes; then
# Neither direct hardcoding nor static linking is supported with a
# broken collect2.
hardcode_direct=unsupported
fi
;;
aix4* | aix5*)
if test "$host_cpu" = ia64; then
# On IA64, the linker does run time linking by default, so we don't
# have to do anything special.
aix_use_runtimelinking=no
else
aix_use_runtimelinking=no
# Test if we are trying to use run time linking or normal
# AIX style linking. If -brtl is somewhere in LDFLAGS, we
# need to do runtime linking.
case $host_os in aix4.[23]|aix4.[23].*|aix5*)
for ld_flag in $LDFLAGS; do
if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
aix_use_runtimelinking=yes
break
fi
done
esac
fi
hardcode_direct=yes
hardcode_libdir_separator=':'
if test "$GCC" = yes; then
case $host_os in aix4.[012]|aix4.[012].*)
collect2name=`${CC} -print-prog-name=collect2`
if test -f "$collect2name" && \
strings "$collect2name" | grep resolve_lib_name >/dev/null
then
# We have reworked collect2
hardcode_direct=yes
else
# We have old collect2
hardcode_direct=unsupported
hardcode_minus_L=yes
hardcode_libdir_flag_spec='-L$libdir'
hardcode_libdir_separator=
fi
esac
fi
if test "$aix_use_runtimelinking" = yes; then
hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
else
if test "$host_cpu" = ia64; then
hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
else
hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
fi
fi
;;
amigaos*)
hardcode_libdir_flag_spec='-L$libdir'
hardcode_minus_L=yes
# see comment about different semantics on the GNU ld section
ld_shlibs=no
;;
cygwin* | mingw* | pw32*)
# When not using gcc, we currently assume that we are using
# Microsoft Visual C++.
# hardcode_libdir_flag_spec is actually meaningless, as there is
# no search path for DLLs.
hardcode_libdir_flag_spec=' '
libext=lib
;;
darwin* | rhapsody*)
hardcode_direct=yes
;;
freebsd1*)
ld_shlibs=no
;;
freebsd2.2*)
hardcode_libdir_flag_spec='-R$libdir'
hardcode_direct=yes
;;
freebsd2*)
hardcode_direct=yes
hardcode_minus_L=yes
;;
freebsd*)
hardcode_libdir_flag_spec='-R$libdir'
hardcode_direct=yes
;;
hpux9* | hpux10* | hpux11*)
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
hardcode_libdir_separator=:
hardcode_direct=yes
hardcode_minus_L=yes # Not in the search PATH, but as the default
# location of the library.
;;
irix5* | irix6*)
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
hardcode_libdir_separator=:
;;
netbsd*)
hardcode_libdir_flag_spec='-R$libdir'
hardcode_direct=yes
;;
newsos6)
hardcode_direct=yes
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
hardcode_libdir_separator=:
;;
openbsd*)
hardcode_direct=yes
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
else
case "$host_os" in
openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
hardcode_libdir_flag_spec='-R$libdir'
;;
*)
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
;;
esac
fi
;;
os2*)
hardcode_libdir_flag_spec='-L$libdir'
hardcode_minus_L=yes
;;
osf3*)
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
hardcode_libdir_separator=:
;;
osf4* | osf5*)
if test "$GCC" = yes; then
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
else
# Both cc and cxx compiler support -rpath directly
hardcode_libdir_flag_spec='-rpath $libdir'
fi
hardcode_libdir_separator=:
;;
sco3.2v5*)
;;
solaris*)
hardcode_libdir_flag_spec='-R$libdir'
;;
sunos4*)
hardcode_libdir_flag_spec='-L$libdir'
hardcode_direct=yes
hardcode_minus_L=yes
;;
sysv4)
if test "x$host_vendor" = xsno; then
hardcode_direct=yes # is this really true???
else
hardcode_direct=no # Motorola manual says yes, but my tests say they lie
fi
;;
sysv4.3*)
;;
sysv5*)
hardcode_libdir_flag_spec=
;;
uts4*)
hardcode_libdir_flag_spec='-L$libdir'
;;
dgux*)
hardcode_libdir_flag_spec='-L$libdir'
;;
sysv4*MP*)
if test -d /usr/nec; then
ld_shlibs=yes
fi
;;
sysv4.2uw2*)
hardcode_direct=yes
hardcode_minus_L=no
;;
sysv5uw7* | unixware7*)
;;
*)
ld_shlibs=no
;;
esac
fi
# Check dynamic linker characteristics
libname_spec='lib$name'
sys_lib_dlsearch_path_spec="/lib /usr/lib"
sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
case "$host_os" in
aix3*)
shlibext=so
;;
aix4* | aix5*)
shlibext=so
;;
amigaos*)
shlibext=ixlibrary
;;
beos*)
shlibext=so
;;
bsdi4*)
shlibext=so
sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
;;
cygwin* | mingw* | pw32*)
case $GCC,$host_os in
yes,cygwin*)
shlibext=dll.a
;;
yes,mingw*)
shlibext=dll
sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
;;
yes,pw32*)
shlibext=dll
;;
*)
shlibext=dll
;;
esac
;;
darwin* | rhapsody*)
shlibext=dylib
;;
freebsd1*)
;;
freebsd*)
shlibext=so
;;
gnu*)
shlibext=so
;;
hpux9* | hpux10* | hpux11*)
shlibext=sl
;;
irix5* | irix6*)
shlibext=so
case "$host_os" in
irix5*)
libsuff= shlibsuff=
;;
*)
case $LD in
*-32|*"-32 ") libsuff= shlibsuff= ;;
*-n32|*"-n32 ") libsuff=32 shlibsuff=N32 ;;
*-64|*"-64 ") libsuff=64 shlibsuff=64 ;;
*) libsuff= shlibsuff= ;;
esac
;;
esac
sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
;;
linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
;;
linux-gnu*)
shlibext=so
;;
netbsd*)
shlibext=so
;;
newsos6)
shlibext=so
;;
openbsd*)
shlibext=so
;;
os2*)
libname_spec='$name'
shlibext=dll
;;
osf3* | osf4* | osf5*)
shlibext=so
sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
;;
sco3.2v5*)
shlibext=so
;;
solaris*)
shlibext=so
;;
sunos4*)
shlibext=so
;;
sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
shlibext=so
case "$host_vendor" in
motorola)
sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
;;
esac
;;
uts4*)
shlibext=so
;;
dgux*)
shlibext=so
;;
sysv4*MP*)
if test -d /usr/nec; then
shlibext=so
fi
;;
esac
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
escaped_sys_lib_search_path_spec=`echo "X$sys_lib_search_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
escaped_sys_lib_dlsearch_path_spec=`echo "X$sys_lib_dlsearch_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
# How to pass a linker flag through the compiler.
wl="$escaped_wl"
# Static library suffix (normally "a").
libext="$libext"
# Shared library suffix (normally "so").
shlibext="$shlibext"
# Flag to hardcode \$libdir into a binary during linking.
# This must work even if \$libdir does not exist.
hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
# Whether we need a single -rpath flag with a separated argument.
hardcode_libdir_separator="$hardcode_libdir_separator"
# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
# resulting binary.
hardcode_direct="$hardcode_direct"
# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
# resulting binary.
hardcode_minus_L="$hardcode_minus_L"
# Compile-time system search path for libraries
sys_lib_search_path_spec="$escaped_sys_lib_search_path_spec"
# Run-time system search path for libraries
sys_lib_dlsearch_path_spec="$escaped_sys_lib_dlsearch_path_spec"
EOF
--- NEW FILE: depcomp ---
#! /bin/sh
# depcomp - compile a program generating dependencies as side-effects
# Copyright 1999, 2000 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
# As a special exception to the GNU General Public License, if you
# distribute this file as part of a program that contains a
# configuration script generated by Autoconf, you may include it under
# the same distribution terms that you use for the rest of that program.
# Originally written by Alexandre Oliva <ol...@dc...>.
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
echo "depcomp: Variables source, object and depmode must be set" 1>&2
exit 1
fi
# `libtool' can also be set to `yes' or `no'.
if test -z "$depfile"; then
base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`
dir=`echo "$object" | sed 's,/.*$,/,'`
if test "$dir" = "$object"; then
dir=
fi
# FIXME: should be _deps on DOS.
depfile="$dir.deps/$base"
fi
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
rm -f "$tmpdepfile"
# Some modes work just like other modes, but use different flags. We
# parameterize here, but still list the modes in the big case below,
# to make depend.m4 easier to write. Note that we *cannot* use a case
# here, because this file can only contain one case statement.
if test "$depmode" = hp; then
# HP compiler uses -M and no extra arg.
gccflag=-M
depmode=gcc
fi
if test "$depmode" = dashXmstdout; then
# This is just like dashmstdout with a different argument.
dashmflag=-xM
depmode=dashmstdout
fi
case "$depmode" in
gcc3)
## gcc 3 implements dependency tracking that does exactly what
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
## it if -MD -MP comes after the -MF stuff. Hmm.
"$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
stat=$?
if test $stat -eq 0; then :
else
rm -f "$tmpdepfile"
exit $stat
fi
mv "$tmpdepfile" "$depfile"
;;
gcc)
## There are various ways to get dependency output from gcc. Here's
## why we pick this rather obscure method:
## - Don't want to use -MD because we'd like the dependencies to end
## up in a subdir. Having to rename by hand is ugly.
## (We might end up doing this anyway to support other compilers.)
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
## -MM, not -M (despite what the docs say).
## - Using -M directly means running the compiler twice (even worse
## than renaming).
if test -z "$gccflag"; then
gccflag=-MD,
fi
"$@" -Wp,"$gccflag$tmpdepfile"
stat=$?
if test $stat -eq 0; then :
else
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
echo "$object : \\" > "$depfile"
alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
## The second -e expression handles DOS-style file names with drive letters.
sed -e 's/^[^:]*: / /' \
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
## This next piece of magic avoids the `deleted header file' problem.
## The problem is that when a header file which appears in a .P file
## is deleted, the dependency causes make to die (because there is
## typically no way to rebuild the header). We avoid this by adding
## dummy dependencies for each header file. Too bad gcc doesn't do
## this for us directly.
tr ' ' '
' < "$tmpdepfile" |
## Some versions of gcc put a space before the `:'. On the theory
## that the space means something, we add a space to the output as
## well.
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly. Breaking it into two sed invocations is a workaround.
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
hp)
# This case exists only to let depend.m4 do its work. It works by
# looking at the text of this script. This case will never be run,
# since it is checked for above.
exit 1
;;
sgi)
if test "$libtool" = yes; then
"$@" "-Wp,-MDupdate,$tmpdepfile"
else
"$@" -MDupdate "$tmpdepfile"
fi
stat=$?
if test $stat -eq 0; then :
else
rm -f "$tmpdepfile"
exit $stat
fi
rm -f "$depfile"
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
echo "$object : \\" > "$depfile"
# Clip off the initial element (the dependent). Don't try to be
# clever and replace this with sed code, as IRIX sed won't handle
# lines with more than a fixed number of characters (4096 in
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
# the IRIX cc adds comments like `#:fec' to the end of the
# dependency line.
tr ' ' '
' < "$tmpdepfile" \
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
tr '
' ' ' >> $depfile
echo >> $depfile
# The second pass generates a dummy entry for each header file.
tr ' ' '
' < "$tmpdepfile" \
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
>> $depfile
else
# The sourcefile does not contain any dependencies, so just
# store a dummy comment line, to avoid errors with the Makefile
# "include basename.Plo" scheme.
echo "#dummy" > "$depfile"
fi
rm -f "$tmpdepfile"
;;
aix)
# The C for AIX Compiler uses -M and outputs the dependencies
# in a .u file. This file always lives in the current directory.
# Also, the AIX compiler puts `$object:' at the start of each line;
# $object doesn't have directory information.
stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'`
tmpdepfile="$stripped.u"
outname="$stripped.o"
if test "$libtool" = yes; then
"$@" -Wc,-M
else
"$@" -M
fi
stat=$?
if test $stat -eq 0; then :
else
rm -f "$tmpdepfile"
exit $stat
fi
if test -f "$tmpdepfile"; then
# Each line is of the form `foo.o: dependent.h'.
# Do two passes, one to just change these to
# `$object: dependent.h' and one to simply `dependent.h:'.
sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
else
# The sourcefile does not contain any dependencies, so just
# store a dummy comment line, to avoid errors with the Makefile
# "include basename.Plo" scheme.
echo "#dummy" > "$depfile"
fi
rm -f "$tmpdepfile"
;;
tru64)
# The Tru64 compiler uses -MD to generate dependencies as a side
# effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
# dependencies in `foo.d' instead, so we check for that too.
# Subdirectories are respected.
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
test "x$dir" = "x$object" && dir=
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
if test "$libtool" = yes; then
tmpdepfile1="$dir.libs/$base.lo.d"
tmpdepfile2="$dir.libs/$base.d"
"$@" -Wc,-MD
else
tmpdepfile1="$dir$base.o.d"
tmpdepfile2="$dir$base.d"
"$@" -MD
fi
stat=$?
if test $stat -eq 0; then :
else
rm -f "$tmpdepfile1" "$tmpdepfile2"
exit $stat
fi
if test -f "$tmpdepfile1"; then
tmpdepfile="$tmpdepfile1"
else
tmpdepfile="$tmpdepfile2"
fi
if test -f "$tmpdepfile"; then
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
# That's a space and a tab in the [].
sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
else
echo "#dummy" > "$depfile"
fi
rm -f "$tmpdepfile"
;;
#nosideeffect)
# This comment above is used by automake to tell side-effect
# dependency tracking mechanisms from slower ones.
dashmstdout)
# Important note: in order to support this mode, a compiler *must*
# always write the proprocessed file to stdout, regardless of -o.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test $1 != '--mode=compile'; do
shift
done
shift
fi
# Remove `-o $object'. We will use -o /dev/null later,
# however we can't do the remplacement now because
# `-o $object' might simply not be used
IFS=" "
for arg
do
case $arg in
-o)
shift
;;
$object)
shift
;;
*)
set fnord "$@" "$arg"
shift # fnord
shift # $arg
;;
esac
done
test -z "$dashmflag" && dashmflag=-M
"$@" -o /dev/null $dashmflag | sed 's:^[^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
rm -f "$depfile"
cat < "$tmpdepfile" > "$depfile"
tr ' ' '
' < "$tmpdepfile" | \
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly. Breaking it into two sed invocations is a workaround.
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
dashXmstdout)
# This case only exists to satisfy depend.m4. It is never actually
# run, as this mode is specially recognized in the preamble.
exit 1
;;
makedepend)
"$@" || exit $?
# X makedepend
shift
cleared=no
for arg in "$@"; do
case $cleared in
no)
set ""; shift
cleared=yes ;;
esac
case "$arg" in
-D*|-I*)
set fnord "$@" "$arg"; shift ;;
-*)
;;
*)
set fnord "$@" "$arg"; shift ;;
esac
done
obj_suffix="`echo $object | sed 's/^.*\././'`"
touch "$tmpdepfile"
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
rm -f "$depfile"
cat < "$tmpdepfile" > "$depfile"
sed '1,2d' "$tmpdepfile" | tr ' ' '
' | \
## Some versions of the HPUX 10.20 sed can't process this invocation
## correctly. Breaking it into two sed invocations is a workaround.
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
rm -f "$tmpdepfile" "$tmpdepfile".bak
;;
cpp)
# Important note: in order to support this mode, a compiler *must*
# always write the proprocessed file to stdout.
"$@" || exit $?
# Remove the call to Libtool.
if test "$libtool" = yes; then
while test $1 != '--mode=compile'; do
shift
done
shift
fi
# Remove `-o $object'.
IFS=" "
for arg
do
case $arg in
-o)
shift
;;
$object)
shift
;;
*)
set fnord "$@" "$arg"
shift # fnord
shift # $arg
;;
esac
done
"$@" -E |
sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
sed '$ s: \\$::' > "$tmpdepfile"
rm -f "$depfile"
echo "$object : \\" > "$depfile"
cat < "$tmpdepfile" >> "$depfile"
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
rm -f "$tmpdepfile"
;;
msvisualcpp)
# Important note: in order to support this mode, a compiler *must*
# always write the proprocessed file to stdout, regardless of -o,
# because we must use -o when running libtool.
"$@" || exit $?
IFS=" "
for arg
do
case "$arg" in
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
set fnord "$@"
shift
shift
;;
*)
set fnord "$@" "$arg"
shift
shift
;;
esac
done
"$@" -E |
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
rm -f "$depfile"
echo "$object : \\" > "$depfile"
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
echo " " >> "$depfile"
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
rm -f "$tmpdepfile"
;;
none)
exec "$@"
;;
*)
echo "Unknown depmode $depmode" 1>&2
exit 1
;;
esac
exit 0
Index: ABOUT-NLS
===================================================================
RCS file: /cvsroot/lib/LIB/ABOUT-NLS,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** ABOUT-NLS 10 May 2000 11:31:23 -0000 1.1.1.1
--- ABOUT-NLS 24 Aug 2002 20:54:15 -0000 1.2
***************
*** 9,13 ****
If you found this `ABOUT-NLS' file inside a distribution, you may
assume that the distributed package does use GNU `gettext' internally,
! itself available at your nearest GNU archive site. But you do *not*
need to install GNU `gettext' prior to configuring, installing or using
this package with messages translated.
--- 9,13 ----
If you found this `ABOUT-NLS' file inside a distribution, you may
assume that the distributed package does use GNU `gettext' internally,
! itself available at your nearest GNU archive site. But you do _not_
need to install GNU `gettext' prior to configuring, installing or using
this package with messages translated.
***************
*** 23,28 ****
`intl/VERSION' file, in internationalized packages.
! One advise in advance
! =====================
If you want to exploit the full power of internationalization, you
--- 23,28 ----
`intl/VERSION' file, in internationalized packages.
! Quick configuration advice
! ==========================
If you want to exploit the full power of internationalization, you
***************
*** 35,45 ****
operating system where this package is being installed. So far, only
the `gettext' implementation in the GNU C library version 2 provides as
! many features (such as locale alias or message inheritance) as the
! implementation here. It is also not possible to offer this additional
! functionality on top of a `catgets' implementation. Future versions of
! GNU `gettext' will very likely convey even more functionality. So it
! might be a good idea to change to GNU `gettext' as soon as possible.
! So you need not provide this option if you are using GNU libc 2 or
you have installed a recent copy of the GNU gettext package with the
included `libintl'.
--- 35,46 ----
operating system where this package is being installed. So far, only
the `gettext' implementation in the GNU C library version 2 provides as
! many features (such as locale alias, message inheritance, automatic
! charset conversion or plural form handling) as the implementation here.
! It is also not possible to offer this additional functionality on top
! of a `catgets' implementation. Future versions of GNU `gettext' will
! very likely convey even more functionality. So it might be a good idea
! to change to GNU `gettext' as soon as possible.
! So you need _not_ provide this option if you are using GNU libc 2 or
you have installed a recent copy of the GNU gettext package with the
included `libintl'.
***************
*** 54,74 ****
By default, this package will be installed to allow translation of
! messages. It will automatically detect whether the system provides
! usable `catgets' (if using this is selected by the installer) or
! `gettext' functions. If neither is available, the GNU `gettext' own
library will be used. This library is wholly contained within this
package, usually in the `intl/' subdirectory, so prior installation of
! the GNU `gettext' package is *not* required. Installers may use
special options at configuration time for changing the default
behaviour. The commands:
./configure --with-included-gettext
- ./configure --with-catgets
./configure --disable-nls
! will respectively bypass any pre-existing `catgets' or `gettext' to use
! the internationalizing routines provided within this package, enable
! the use of the `catgets' functions (if found on the locale system), or
! else, *totally* disable translation of messages.
When you already have GNU `gettext' installed on your system and run
--- 55,72 ----
By default, this package will be installed to allow translation of
! messages. It will automatically detect whether the system already
! provides the GNU `gettext' functions. If not, the GNU `gettext' own
library will be used. This library is wholly contained within this
package, usually in the `intl/' subdirectory, so prior installation of
! the GNU `gettext' package is _not_ required. Installers may use
special options at configuration time for changing the default
behaviour. The commands:
./configure --with-included-gettext
./configure --disable-nls
! will respectively bypass any pre-existing `gettext' to use the
! internationalizing routines provided within this package, or else,
! _totally_ disable translation of messages.
When you already have GNU `gettext' installed on your system and run
***************
*** 84,99 ****
to prevent auto-detection.
! By default the configuration process will not test for the `catgets'
! function and therefore they will not be used. The reasons are already
! given above: the emulation on top of `catgets' cannot provide all the
! extensions provided by the GNU `gettext' library. If you nevertheless
! want to use the `catgets' functions use
!
! ./configure --with-catgets
!
! to enable the test for `catgets' (this causes no harm if `catgets' is
! not available on your system). If you really select this option we
! would like to hear about the reasons because we cannot think of any
! good one ourself.
Internationalized packages have usually many `po/LL.po' files, where
--- 82,89 ----
to prevent auto-detection.
! The configuration process will not test for the `catgets' function
! and therefore it will not be used. The reason is that even an
! emulation of `gettext' on top of `catgets' could not provide all the
! extensions of the GNU `gettext' library.
Internationalized packages have usually many `po/LL.po' files, where
***************
*** 111,130 ****
As a user, if your language has been installed for this package, you
only have to set the `LANG' environment variable to the appropriate
! ISO 639 `LL' two-letter code prior to using the programs in the
! package. For example, let's suppose that you speak German. At the
! shell prompt, merely execute `setenv LANG de' (in `csh'),
! `export LANG; LANG=de' (in `sh') or `export LANG=de' (in `bash'). This
! can be done from your `.login' or `.profile' file, once and for all.
! An operating system might already offer message localization for
! many of its programs, while other programs have been installed locally
! with the full capabilities of GNU `gettext'. Just using `gettext'
! extended syntax for `LANG' would break proper localization of already
! available operating system programs. In this case, users should set
! both `LANGUAGE' and `LANG' variables in their environment, as programs
! using GNU `gettext' give preference to `LANGUAGE'. For example, some
! Swedish users would rather read translations in German than English for
! when Swedish is not available. This is easily accomplished by setting
! `LANGUAGE' to `sv:de' while leaving `LANG' to `sv'.
Translating Teams
--- 101,140 ----
As a user, if your language has been installed for this package, you
only have to set the `LANG' environment variable to the appropriate
! `LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
! and `CC' is an ISO 3166 two-letter country code. For example, let's
! suppose that you speak German and live in Germany. At the shell
! prompt, merely execute `setenv LANG de_DE' (in `csh'),
! `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
! This can be done from your `.login' or `.profile' file, once and for
! all.
! You might think that the country code specification is redundant.
! But in fact, some languages have dialects in different countries. For
! example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
! country code serves to distinguish the dialects.
!
! The locale naming convention of `LL_CC', with `LL' denoting the
! language and `CC' denoting the country, is the one use on systems based
! on GNU libc. On other systems, some variations of this scheme are
! used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
! locales supported by your system for your country by running the command
! `locale -a | grep '^LL''.
!
! Not all programs have translations for all languages. By default, an
! English message is shown in place of a nonexistent translation. If you
! understand other languages, you can set up a priority list of languages.
! This is done through a different environment variable, called
! `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
! for the purpose of message handling, but you still need to have `LANG'
! set to the primary language; this is required by other parts of the
! system libraries. For example, some Swedish users who would rather
! read translations in German than English for when Swedish is not
! available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
!
! In the `LANGUAGE' environment variable, but not in the `LANG'
! environment variable, `LL_CC' combinations can be abbreviated as `LL'
! to denote the language's main dialect. For example, `de' is equivalent
! to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
! (Portuguese as spoken in Portugal) in this context.
Translating Teams
***************
*** 134,157 ****
people who like their own language and write it well, and who are also
able to synergize with other translators speaking the same language.
! Each translation team has its own mailing list, courtesy of Linux
! International. You may reach your translation team at the address
! `LL...@li...', replacing LL by the two-letter ISO 639 code for your
! language. Language codes are *not* the same as the country codes given
! in ISO 3166. The following translation teams exist, as of December
! 1997:
!
! Chinese `zh', Czech `cs', Danish `da', Dutch `nl', English `en',
! Esperanto `eo', Finnish `fi', French `fr', German `de', Hungarian
! `hu', Irish `ga', Italian `it', Indonesian `id', Japanese `ja',
! Korean `ko', Latin `la', Norwegian `no', Persian `fa', Polish
! `pl', Portuguese `pt', Russian `ru', Slovenian `sl', Spanish `es',
! Swedish `sv', and Turkish `tr'.
!
! For example, you may reach the Chinese translation team by writing to
! `zh...@li...'.
! If you'd like to volunteer to *work* at translating messages, you
should become a member of the translating team for your own language.
! The subscribing address is *not* the same as the list itself, it has
`-request' appended. For example, speakers of Swedish can send a
message to `sv-...@li...', having this message body:
--- 144,155 ----
people who like their own language and write it well, and who are also
able to synergize with other translators speaking the same language.
! Each translation team has its own mailing list. The up-to-date list of
! teams can be found at the Free Translation Project's homepage,
! `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
! area.
! If you'd like to volunteer to _work_ at translating messages, you
should become a member of the translating team for your own language.
! The subscribing address is _not_ the same as the list itself, it has
`-request' appended. For example, speakers of Swedish can send a
message to `sv-...@li...', having this message body:
***************
*** 160,164 ****
Keep in mind that team members are expected to participate
! *actively* in translations, or at solving translational difficulties,
rather than merely lurking around. If your team does not exist yet and
you want to start one, or if you are unsure about what to do or how to
--- 158,162 ----
Keep in mind that team members are expected to participate
! _actively_ in translations, or at solving translational difficulties,
rather than merely lurking around. If your team does not exist yet and
you want to start one, or if you are unsure about what to do or how to
***************
*** 174,213 ****
Languages are not equally supported in all packages. The following
! matrix shows the current state of internationalization, as of December
! 1997. The matrix shows, in regard of each package, for which languages
! PO files have been submitted to translation coordination.
! Ready PO files cs da de en es fi fr it ja ko nl no pl pt ru sl sv
! .----------------------------------------------------.
! bash | [] [] [] | 3
! bison | [] [] [] | 3
! clisp | [] [] [] [] | 4
! cpio | [] [] [] [] [] [] | 6
! diffutils | [] [] [] [] [] | 5
! enscript | [] [] [] [] [] [] | 6
! fileutils | [] [] [] [] [] [] [] [] [] [] | 10
! findutils | [] [] [] [] [] [] [] [] [] | 9
! flex | [] [] [] [] | 4
! gcal | [] [] [] [] [] | 5
! gettext | [] [] [] [] [] [] [] [] [] [] [] | 12
! grep | [] [] [] [] [] [] [] [] [] [] | 10
! hello | [] [] [] [] [] [] [] [] [] [] [] | 11
! id-utils | [] [] [] | 3
! indent | [] [] [] [] [] | 5
! libc | [] [] [] [] [] [] [] | 7
! m4 | [] [] [] [] [] [] | 6
! make | [] [] [] [] [] [] | 6
! music | [] [] | 2
! ptx | [] [] [] [] [] [] [] [] | 8
! recode | [] [] [] [] [] [] [] [] [] | 9
! sh-utils | [] [] [] [] [] [] [] [] | 8
! sharutils | [] [] [] [] [] [] | 6
! tar | [] [] [] [] [] [] [] [] [] [] [] | 11
! texinfo | [] [] [] | 3
! textutils | [] [] [] [] [] [] [] [] [] | 9
! wdiff | [] [] [] [] [] [] [] [] | 8
! `----------------------------------------------------'
! 17 languages cs da de en es fi fr it ja ko nl no pl pt ru sl sv
! 27 packages 6 4 25 1 18 1 26 2 1 12 20 9 19 7 4 7 17 179
Some counters in the preceding matrix are higher than the number of
--- 172,401 ----
Languages are not equally supported in all packages. The following
! matrix shows the current state of internationalization, as of August
! 2002. The matrix shows, in regard of each package, for which languages
! PO files have been submitted to translation coordination, with a
! translation percentage of at least 50%.
! Ready PO files be bg ca cs da de el en eo es et fi fr
! +----------------------------------------+
! a2ps | [] [] [] [] |
! ap-utils | |
! bash | [] [] [] [] |
! bfd | [] [] |
! binutils | [] [] |
! bison | [] [] [] [] |
! clisp | |
! clisp | [] [] [] [] |
! clisplow | |
! cpio | [] [] [] [] |
! darkstat | () |
! diffutils | [] [] [] [] [] [] |
! enscript | [] [] |
! error | [] [] [] |
! fetchmail | [] () [] [] [] () |
! fileutils | [] [] [] [] [] |
! findutils | [] [] [] [] [] [] |
! flex | [] [] [] [] [] |
! gas | [] [] |
! gawk | [] [] [] |
! gcal | [] [] |
! gcc | [] [] |
! gettext | [] [] [] [] [] |
! gnupg | [] [] [] [] [] [] [] |
! gprof | [] [] |
! gpsdrive | () () () () () |
! grep | [] [] [] [] [] [] [] [] |
! gretl | [] |
! gthumb | () () () |
! hello | [] [] [] [] [] [] [] [] [] |
! id-utils | [] [] [] |
! indent | [] [] [] [] [] |
! jpilot | () [] [] [] |
! jwhois | [] [] |
! kbd | [] [] [] |
! ld | [] [] |
! libc | [] [] [] [] [] [] [] [] |
! libiconv | [] [] [] [] |
! lifelines | () () |
! lilypond | [] [] |
! lingoteach | [] [] |
! lingoteach_lessons| () () |
! lynx | [] [] [] [] [] |
! m4 | [] [] [] [] [] |
! make | [] [] [] [] |
! man-db | [] () () [] () () |
! mysecretdiary | [] [] [] |
! nano | [] () [] [] [] [] |
! nano_1_0 | [] () [] [] [] [] |
! opcodes | [] [] [] |
! parted | [] [] [] [] [] |
! ptx | [] [] [] [] [] [] [] |
! python | |
! recode | [] [] [] [] [] [] |
! sed | [] [] [] [] [] [] [] [] [] [] |
! sh-utils | [] [] [] [] |
! sharutils | [] [] [] [] [] [] [] |
! sketch | () [] () |
! soundtracker | [] [] [] |
! sp | [] |
! tar | [] [] [] [] [] [] |
! texinfo | [] [] [] [] [] |
! textutils | [] [] [] [] [] |
! util-linux | [] [] [] [] [] [] |
! vorbis-tools | [] |
! wastesedge | |
! wdiff | [] [] [] [] [] [] |
! wget | [] [] [] [] [] [] [] [] [] [] |
! +----------------------------------------+
! be bg ca cs da de el en eo es et fi fr
! 0 2 19 10 30 44 9 1 12 44 17 6 53
!
! gl he hr hu id it ja ko lv nb nl nn
! +-------------------------------------+
! a2ps | () () [] |
! ap-utils | |
! bash | [] |
! bfd | [] |
! binutils | [] |
! bison | [] [] [] [] |
! clisp | |
! clisp | [] |
! clisplow | |
! cpio | [] [] [] [] |
! darkstat | |
! diffutils | [] [] [] [] [] |
! enscript | [] [] |
! error | [] |
! fetchmail | [] |
! fileutils | [] [] [] |
! findutils | [] [] [] [] [] [] [] [] |
! flex | [] |
! gas | |
! gawk | [] |
! gcal | |
! gcc | [] |
! gettext | [] [] |
! gnupg | [] [] [] [] |
! gprof | [] |
! gpsdrive | [] () () |
! grep | [] [] [] [] [] [] [] |
! gretl | |
! gthumb | () () |
! hello | [] [] [] [] [] [] [] [] [] [] [] [] |
! id-utils | [] [] |
! indent | [] [] [] [] |
! jpilot | () () |
! jwhois | [] [] |
! kbd | |
! ld | |
! libc | [] [] [] [] |
! libiconv | [] [] [] |
! lifelines | |
! lilypond | [] |
! lingoteach | [] |
! lingoteach_lessons| |
! lynx | [] [] [] [] |
! m4 | [] [] [] [] |
! make | [] [] [] [] [] [] |
! man-db | () () |
! mysecretdiary | [] |
! nano | [] [] [] [] |
! nano_1_0 | [] [] [] [] [] |
! opcodes | [] [] |
! parted | [] [] [] |
! ptx | [] [] [] [] [] |
! python | |
! recode | [] [] [] |
! sed | [] [] [] [] [] [] [] [] |
! sh-utils | [] [] [] |
! sharutils | [] [] [] |
! sketch | () |
! soundtracker | [] [] |
! sp | |
! tar | [] [] [] [] [] [] |
! texinfo | [] [] [] |
! textutils | [] [] [] [] |
! util-linux | () [] |
! vorbis-tools | [] |
! wastesedge | |
! wdiff | [] [] [] |
! wget | [] [] [] [] [] [] |
! +-------------------------------------+
! gl he hr hu id it ja ko lv nb nl nn
! 23 9 12 19 16 13 26 9 1 7 19 3
!
! no pl pt pt_BR ru sk sl sv tr uk zh_CN zh_TW
! +----------------------------------------------+
! a2ps | () () () [] [] [] [] [] | 10
! ap-utils | () | 0
! bash | [] | 6
! bfd | [] [] | 5
! binutils | [] [] | 5
! bison | [] [] [] [] | 12
! clisp | | 0
! clisp | | 5
! clisplow | | 0
! cpio | [] [] [] [] | 12
! darkstat | [] [] () () | 2
! diffutils | [] [] [] [] [] [] | 17
! enscript | [] [] [] [] | 8
! error | [] [] [] | 7
! fetchmail | () () [] | 6
! fileutils | [] [] [] [] [] [] | 14
! findutils | [] [] [] [] [] [] [] | 21
! flex | [] [] [] | 9
! gas | [] | 3
! gawk | [] [] | 6
! gcal | [] [] | 4
! gcc | [] | 4
! gettext | [] [] [] [] [] [] | 13
! gnupg | [] [] [] | 14
! gprof | [] [] | 5
! gpsdrive | [] [] | 3
! grep | [] [] [] [] [] | 20
! gretl | | 1
! gthumb | () () [] | 1
! hello | [] [] [] [] [] [] [] | 28
! id-utils | [] [] [] [] | 9
! indent | [] [] [] [] [] | 14
! jpilot | () () [] [] | 5
! jwhois | [] () () [] [] | 7
! kbd | [] [] | 5
! ld | [] [] | 4
! libc | [] [] [] [] [] [] | 18
! libiconv | [] [] [] [] [] | 12
! lifelines | [] | 1
! lilypond | [] | 4
! lingoteach | [] [] | 5
! lingoteach_lessons| () | 0
! lynx | [] [] [] [] | 13
! m4 | [] [] [] [] | 13
! make | [] [] [] [] [] | 15
! man-db | | 3
! mysecretdiary | [] [] [] | 7
! nano | [] [] [] [] | 13
! nano_1_0 | [] [] [] [] | 14
! opcodes | [] [] [] | 8
! parted | [] [] [] [] | 12
! ptx | [] [] [] [] [] [] [] | 19
! python | | 0
! recode | [] [] [] [] [] [] | 15
! sed | [] [] [] [] [] [] | 24
! sh-utils | [] [] | 9
! sharutils | [] [] [] [] | 14
! sketch | [] () [] | 4
! soundtracker | [] | 6
! sp | | 1
! tar | [] [] [] [] [] [] [] | 19
! texinfo | [] [] | 10
! textutils | [] [] [] [] [] | 14
! util-linux | [] [] [] | 10
! vorbis-tools | [] | 3
! wastesedge | | 0
! wdiff | [] [] [] [] [] | 14
! wget | [] [] [] [] [] [] [] [] | 24
! +----------------------------------------------+
! 37 teams no pl pt pt_BR ru sk sl sv tr uk zh_CN zh_TW
! 68 domains 4 15 2 28 28 12 10 49 43 4 1 9 609
Some counters in the preceding matrix are higher than the number of
***************
*** 222,226 ****
distribution.
! If December 1997 seems to be old, you may fetch a more recent copy
! of this `ABOUT-NLS' file on most GNU archive sites.
--- 410,435 ----
distribution.
! If August 2002 seems to be old, you may fetch a more recent copy of
! this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
! matrix with full percentage details can be found at
! `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
!
! Using `gettext' in new packages
! ===============================
!
! If you are writing a freely available program and want to
! internationalize it you are welcome to use GNU `gettext' in your
! package. Of course you have to respect the GNU Library General Public
! License which covers the use of the GNU `gettext' library. This means
! in particular that even non-free programs can use `libintl' as a shared
! library, whereas only free software can use `libintl' as a static
! library or use modified versions of `libintl'.
!
! Once the sources are changed appropriately and the setup can handle
! to use of `gettext' the only thing missing are the translations. The
! Free Translation Project is also available for packages which are not
! developed inside the GNU project. Therefore the information given above
! applies also for every other Free Software Project. Contact
! `tra...@ir...' to make the `.pot' files available to
! the translation teams.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/lib/LIB/ChangeLog,v
retrieving revision 1.304
retrieving revision 1.305
diff -C2 -d -r1.304 -r1.305
*** ChangeLog 24 Aug 2002 18:51:06 -0000 1.304
--- ChangeLog 24 Aug 2002 20:54:15 -0000 1.305
***************
*** 1,2 ****
--- 1,14 ----
+ 2002/08/24 22:53:40 przewdnik
+ * locales dzia³aj± (mi przynajmniej ;) )
+
+ 2002-08-24 gettextize <bug...@gn...>
+
+ * Makefile.am (SUBDIRS): Add m4.
+ (SUBDIRS): Remove intl.
+ (ACLOCAL_AMFLAGS): New variable.
+ (EXTRA_DIST): New variable.
+ * configure.in (AC_CONFIG_FILES): Add m4/Makefile.
+ (AC_CONFIG_FILES): Remove intl/Makefile.
+
2002/08/24 20:50:28 przewdnik
* zmniany dooko³a locales - locales na razie nie dzia³aj±
Index: Makefile.am
===================================================================
RCS file: /cvsroot/lib/LIB/Makefile.am,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** Makefile.am 24 Aug 2002 14:16:53 -0000 1.30
--- Makefile.am 24 Aug 2002 20:54:15 -0000 1.31
***************
*** 1,3 ****
! SUBDIRS=intl po doc utils lib
datadir=$(prefix)/lib/games
bindir=$(prefix)/games
--- 1,3 ----
! SUBDIRS= m4 po doc utils lib intl
datadir=$(prefix)/lib/games
bindir=$(prefix)/games
***************
*** 11,12 ****
--- 11,16 ----
lib.data: utils lib
utils/join
+
+ ACLOCAL_AMFLAGS = -I m4
+
+ EXTRA_DIST = config.rpath
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/Makefile.in,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** Makefile.in 24 Aug 2002 14:16:53 -0000 1.39
--- Makefile.in 24 Aug 2002 20:54:15 -0000 1.40
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_i...
[truncated message content] |
Update of /cvsroot/lib/LIB/m4
In directory usw-pr-cvs1:/tmp/cvs-serv4325/m4
Added Files:
ChangeLog Makefile.am Makefile.in codeset.m4 gettext.m4
glibc21.m4 iconv.m4 intdiv0.m4 inttypes-pri.m4 inttypes.m4
inttypes_h.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4
lib-prefix.m4 progtest.m4 stdint_h.m4 uintmax_t.m4
ulonglong.m4
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
--- NEW FILE: ChangeLog ---
2002-08-24 gettextize <bug...@gn...>
* codeset.m4: New file, from gettext-0.11.5.
* gettext.m4: New file, from gettext-0.11.5.
* glibc21.m4: New file, from gettext-0.11.5.
* iconv.m4: New file, from gettext-0.11.5.
* intdiv0.m4: New file, from gettext-0.11.5.
* inttypes.m4: New file, from gettext-0.11.5.
* inttypes_h.m4: New file, from gettext-0.11.5.
* inttypes-pri.m4: New file, from gettext-0.11.5.
* isc-posix.m4: New file, from gettext-0.11.5.
* lcmessage.m4: New file, from gettext-0.11.5.
* lib-ld.m4: New file, from gettext-0.11.5.
* lib-link.m4: New file, from gettext-0.11.5.
* lib-prefix.m4: New file, from gettext-0.11.5.
* progtest.m4: New file, from gettext-0.11.5.
* stdint_h.m4: New file, from gettext-0.11.5.
* uintmax_t.m4: New file, from gettext-0.11.5.
* ulonglong.m4: New file, from gettext-0.11.5.
* Makefile.am: New file.
--- NEW FILE: Makefile.am ---
EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4
--- NEW FILE: Makefile.in ---
# Makefile.in generated by automake 1.6.3 from Makefile.am.
# @configure_input@
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
# Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
SHELL = @SHELL@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
sbindir = @sbindir@
libexecdir = @libexecdir@
datadir = @datadir@
sysconfdir = @sysconfdir@
sharedstatedir = @sharedstatedir@
localstatedir = @localstatedir@
libdir = @libdir@
infodir = @infodir@
mandir = @mandir@
includedir = @includedir@
oldincludedir = /usr/include
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = ..
ACLOCAL = @ACLOCAL@
AUTOCONF = @AUTOCONF@
AUTOMAKE = @AUTOMAKE@
AUTOHEADER = @AUTOHEADER@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
host_alias = @host_alias@
host_triplet = @host@
EXEEXT = @EXEEXT@
OBJEXT = @OBJEXT@
PATH_SEPARATOR = @PATH_SEPARATOR@
AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
CATOBJEXT = @CATOBJEXT@
CC = @CC@
DATADIRNAME = @DATADIRNAME@
DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
INTLLIBS = @INTLLIBS@
INTLOBJS = @INTLOBJS@
INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
LIB = @LIB@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LN_S = @LN_S@
LTLIB = @LTLIB@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
am__include = @am__include@
am__quote = @am__quote@
install_sh = @install_sh@
EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4
subdir = m4
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/config2.h
CONFIG_CLEAN_FILES =
DIST_SOURCES =
DIST_COMMON = ChangeLog Makefile.am Makefile.in
all: all-am
.SUFFIXES:
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu m4/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
uninstall-info-am:
tags: TAGS
TAGS:
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
top_distdir = ..
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
@list='$(DISTFILES)'; for file in $$list; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
dir="/$$dir"; \
$(mkinstalldirs) "$(distdir)$$dir"; \
else \
dir=''; \
fi; \
if test -d $$d/$$file; then \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-am
all-am: Makefile
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-generic mostlyclean-am
distclean: distclean-am
distclean-am: clean-am distclean-generic
dvi: dvi-am
dvi-am:
info: info-am
info-am:
install-data-am:
install-exec-am:
install-info: install-info-am
install-man:
installcheck-am:
maintainer-clean: maintainer-clean-am
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-generic
uninstall-am: uninstall-info-am
.PHONY: all all-am check check-am clean clean-generic distclean \
distclean-generic distdir dvi dvi-am info info-am install \
install-am install-data install-data-am install-exec \
install-exec-am install-info install-info-am install-man \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-generic uninstall uninstall-am uninstall-info-am
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
--- NEW FILE: codeset.m4 ---
# codeset.m4 serial AM1 (gettext-0.10.40)
dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Bruno Haible.
AC_DEFUN([AM_LANGINFO_CODESET],
[
AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
[AC_TRY_LINK([#include <langinfo.h>],
[char* cs = nl_langinfo(CODESET);],
am_cv_langinfo_codeset=yes,
am_cv_langinfo_codeset=no)
])
if test $am_cv_langinfo_codeset = yes; then
AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
[Define if you have <langinfo.h> and nl_langinfo(CODESET).])
fi
])
--- NEW FILE: gettext.m4 ---
# gettext.m4 serial 17 (gettext-0.11.5)
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl
dnl This file can can be used in projects which are not available under
dnl the GNU General Public License or the GNU Library General Public
dnl License but which still want to provide support for the GNU gettext
dnl functionality.
dnl Please note that the actual code of the GNU gettext library is covered
dnl by the GNU Library General Public License, and the rest of the GNU
dnl gettext package package is covered by the GNU General Public License.
dnl They are *not* in the public domain.
dnl Authors:
dnl Ulrich Drepper <dr...@cy...>, 1995-2000.
dnl Bruno Haible <ha...@cl...>, 2000-2002.
dnl Macro to add for using GNU gettext.
dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]).
dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The
dnl default (if it is not specified or empty) is 'no-libtool'.
dnl INTLSYMBOL should be 'external' for packages with no intl directory,
dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory.
dnl If INTLSYMBOL is 'use-libtool', then a libtool library
dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static,
dnl depending on --{enable,disable}-{shared,static} and on the presence of
dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library
dnl $(top_builddir)/intl/libintl.a will be created.
dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext
dnl implementations (in libc or libintl) without the ngettext() function
dnl will be ignored. If NEEDSYMBOL is specified and is
dnl 'need-formatstring-macros', then GNU gettext implementations that don't
dnl support the ISO C 99 <inttypes.h> formatstring macros will be ignored.
dnl INTLDIR is used to find the intl libraries. If empty,
dnl the value `$(top_builddir)/intl/' is used.
dnl
dnl The result of the configuration is one of three cases:
dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled
dnl and used.
dnl Catalog format: GNU --> install in $(datadir)
dnl Catalog extension: .mo after installation, .gmo in source tree
dnl 2) GNU gettext has been found in the system's C library.
dnl Catalog format: GNU --> install in $(datadir)
dnl Catalog extension: .mo after installation, .gmo in source tree
dnl 3) No internationalization, always use English msgid.
dnl Catalog format: none
dnl Catalog extension: none
dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur.
dnl The use of .gmo is historical (it was needed to avoid overwriting the
dnl GNU format catalogs when building on a platform with an X/Open gettext),
dnl but we keep it in order not to force irrelevant filename changes on the
dnl maintainers.
dnl
AC_DEFUN([AM_GNU_GETTEXT],
[
dnl Argument checking.
ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], ,
[errprint([ERROR: invalid first argument to AM_GNU_GETTEXT
])])])])])
ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,
[errprint([ERROR: invalid second argument to AM_GNU_GETTEXT
])])])])
define(gt_included_intl, ifelse([$1], [external], [no], [yes]))
define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], []))
AC_REQUIRE([AM_PO_SUBDIRS])dnl
ifelse(gt_included_intl, yes, [
AC_REQUIRE([AM_INTL_SUBDIR])dnl
])
dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
AC_REQUIRE([AC_LIB_RPATH])
dnl Sometimes libintl requires libiconv, so first search for libiconv.
dnl Ideally we would do this search only after the
dnl if test "$USE_NLS" = "yes"; then
dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then
dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT
dnl the configure script would need to contain the same shell code
dnl again, outside any 'if'. There are two solutions:
dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'.
dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE.
dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not
dnl documented, we avoid it.
ifelse(gt_included_intl, yes, , [
AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
])
AC_MSG_CHECKING([whether NLS is requested])
dnl Default is enabled NLS
AC_ARG_ENABLE(nls,
[ --disable-nls do not use Native Language Support],
USE_NLS=$enableval, USE_NLS=yes)
AC_MSG_RESULT($USE_NLS)
AC_SUBST(USE_NLS)
ifelse(gt_included_intl, yes, [
BUILD_INCLUDED_LIBINTL=no
USE_INCLUDED_LIBINTL=no
])
LIBINTL=
LTLIBINTL=
POSUB=
dnl If we use NLS figure out what method
if test "$USE_NLS" = "yes"; then
gt_use_preinstalled_gnugettext=no
ifelse(gt_included_intl, yes, [
AC_MSG_CHECKING([whether included gettext is requested])
AC_ARG_WITH(included-gettext,
[ --with-included-gettext use the GNU gettext library included here],
nls_cv_force_use_gnu_gettext=$withval,
nls_cv_force_use_gnu_gettext=no)
AC_MSG_RESULT($nls_cv_force_use_gnu_gettext)
nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
])
dnl User does not insist on using GNU NLS library. Figure out what
dnl to use. If GNU gettext is available we use this. Else we have
dnl to fall back to GNU NLS library.
dnl Add a version number to the cache macros.
define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1)))
define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc])
define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl])
AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc,
[AC_TRY_LINK([#include <libintl.h>
]ifelse([$2], [need-formatstring-macros],
[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
#endif
changequote(,)dnl
typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
changequote([,])dnl
], [])[extern int _nl_msg_cat_cntr;
extern int *_nl_domain_bindings;],
[bindtextdomain ("", "");
return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings],
gt_cv_func_gnugettext_libc=yes,
gt_cv_func_gnugettext_libc=no)])
if test "$gt_cv_func_gnugettext_libc" != "yes"; then
dnl Sometimes libintl requires libiconv, so first search for libiconv.
ifelse(gt_included_intl, yes, , [
AM_ICONV_LINK
])
dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL
dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv])
dnl because that would add "-liconv" to LIBINTL and LTLIBINTL
dnl even if libiconv doesn't exist.
AC_LIB_LINKFLAGS_BODY([intl])
AC_CACHE_CHECK([for GNU gettext in libintl],
gt_cv_func_gnugettext_libintl,
[gt_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $INCINTL"
gt_save_LIBS="$LIBS"
LIBS="$LIBS $LIBINTL"
dnl Now see whether libintl exists and does not depend on libiconv.
AC_TRY_LINK([#include <libintl.h>
]ifelse([$2], [need-formatstring-macros],
[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
#endif
changequote(,)dnl
typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
changequote([,])dnl
], [])[extern int _nl_msg_cat_cntr;
extern
#ifdef __cplusplus
"C"
#endif
const char *_nl_expand_alias ();],
[bindtextdomain ("", "");
return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
gt_cv_func_gnugettext_libintl=yes,
gt_cv_func_gnugettext_libintl=no)
dnl Now see whether libintl exists and depends on libiconv.
if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then
LIBS="$LIBS $LIBICONV"
AC_TRY_LINK([#include <libintl.h>
]ifelse([$2], [need-formatstring-macros],
[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
#endif
changequote(,)dnl
typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
changequote([,])dnl
], [])[extern int _nl_msg_cat_cntr;
extern
#ifdef __cplusplus
"C"
#endif
const char *_nl_expand_alias ();],
[bindtextdomain ("", "");
return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)],
[LIBINTL="$LIBINTL $LIBICONV"
LTLIBINTL="$LTLIBINTL $LTLIBICONV"
gt_cv_func_gnugettext_libintl=yes
])
fi
CPPFLAGS="$gt_save_CPPFLAGS"
LIBS="$gt_save_LIBS"])
fi
dnl If an already present or preinstalled GNU gettext() is found,
dnl use it. But if this macro is used in GNU gettext, and GNU
dnl gettext is already preinstalled in libintl, we update this
dnl libintl. (Cf. the install rule in intl/Makefile.in.)
if test "$gt_cv_func_gnugettext_libc" = "yes" \
|| { test "$gt_cv_func_gnugettext_libintl" = "yes" \
&& test "$PACKAGE" != gettext; }; then
gt_use_preinstalled_gnugettext=yes
else
dnl Reset the values set by searching for libintl.
LIBINTL=
LTLIBINTL=
INCINTL=
fi
ifelse(gt_included_intl, yes, [
if test "$gt_use_preinstalled_gnugettext" != "yes"; then
dnl GNU gettext is not found in the C library.
dnl Fall back on included GNU gettext library.
nls_cv_use_gnu_gettext=yes
fi
fi
if test "$nls_cv_use_gnu_gettext" = "yes"; then
dnl Mark actions used to generate GNU NLS library.
INTLOBJS="\$(GETTOBJS)"
BUILD_INCLUDED_LIBINTL=yes
USE_INCLUDED_LIBINTL=yes
LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV"
LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV"
LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
fi
if test "$gt_use_preinstalled_gnugettext" = "yes" \
|| test "$nls_cv_use_gnu_gettext" = "yes"; then
dnl Mark actions to use GNU gettext tools.
CATOBJEXT=.gmo
fi
])
if test "$gt_use_preinstalled_gnugettext" = "yes" \
|| test "$nls_cv_use_gnu_gettext" = "yes"; then
AC_DEFINE(ENABLE_NLS, 1,
[Define to 1 if translation of program messages to the user's native language
is requested.])
else
USE_NLS=no
fi
fi
if test "$USE_NLS" = "yes"; then
if test "$gt_use_preinstalled_gnugettext" = "yes"; then
if test "$gt_cv_func_gnugettext_libintl" = "yes"; then
AC_MSG_CHECKING([how to link with libintl])
AC_MSG_RESULT([$LIBINTL])
AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
fi
dnl For backward compatibility. Some packages may be using this.
AC_DEFINE(HAVE_GETTEXT, 1,
[Define if the GNU gettext() function is already present or preinstalled.])
AC_DEFINE(HAVE_DCGETTEXT, 1,
[Define if the GNU dcgettext() function is already present or preinstalled.])
fi
dnl We need to process the po/ directory.
POSUB=po
fi
ifelse(gt_included_intl, yes, [
dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL
dnl to 'yes' because some of the testsuite requires it.
if test "$PACKAGE" = gettext; then
BUILD_INCLUDED_LIBINTL=yes
fi
dnl Make all variables we use known to autoconf.
AC_SUBST(BUILD_INCLUDED_LIBINTL)
AC_SUBST(USE_INCLUDED_LIBINTL)
AC_SUBST(CATOBJEXT)
AC_SUBST(INTLOBJS)
dnl For backward compatibility. Some configure.ins may be using this.
nls_cv_header_intl=
nls_cv_header_libgt=
dnl For backward compatibility. Some Makefiles may be using this.
DATADIRNAME=share
AC_SUBST(DATADIRNAME)
dnl For backward compatibility. Some Makefiles may be using this.
INSTOBJEXT=.mo
AC_SUBST(INSTOBJEXT)
dnl For backward compatibility. Some Makefiles may be using this.
GENCAT=gencat
AC_SUBST(GENCAT)
dnl Enable libtool support if the surrounding package wishes it.
INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix
AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX)
])
dnl For backward compatibility. Some Makefiles may be using this.
INTLLIBS="$LIBINTL"
AC_SUBST(INTLLIBS)
dnl Make all documented variables known to autoconf.
AC_SUBST(LIBINTL)
AC_SUBST(LTLIBINTL)
AC_SUBST(POSUB)
])
dnl Checks for all prerequisites of the po subdirectory,
dnl except for USE_NLS.
AC_DEFUN([AM_PO_SUBDIRS],
[
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
AC_REQUIRE([AC_PROG_INSTALL])dnl
AC_REQUIRE([AM_MKINSTALLDIRS])dnl
dnl Perform the following tests also if --disable-nls has been given,
dnl because they are needed for "make dist" to work.
dnl Search for GNU msgfmt in the PATH.
dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions.
dnl The second test excludes FreeBSD msgfmt.
AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
[$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 &&
(if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
:)
AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
dnl Search for GNU xgettext 0.11 or newer in the PATH.
dnl The first test excludes Solaris xgettext and early GNU xgettext versions.
dnl The second test excludes FreeBSD xgettext.
AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
[$ac_dir/$ac_word --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 &&
(if $ac_dir/$ac_word --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
:)
dnl Remove leftover from FreeBSD xgettext call.
rm -f messages.po
dnl Search for GNU msgmerge 0.11 or newer in the PATH.
AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge,
[$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :)
dnl This could go away some day; the PATH_PROG_WITH_TEST already does it.
dnl Test whether we really found GNU msgfmt.
if test "$GMSGFMT" != ":"; then
dnl If it is no GNU msgfmt we define it as : so that the
dnl Makefiles still can work.
if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
(if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
: ;
else
GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
AC_MSG_RESULT(
[found $GMSGFMT program is not GNU msgfmt; ignore it])
GMSGFMT=":"
fi
fi
dnl This could go away some day; the PATH_PROG_WITH_TEST already does it.
dnl Test whether we really found GNU xgettext.
if test "$XGETTEXT" != ":"; then
dnl If it is no GNU xgettext we define it as : so that the
dnl Makefiles still can work.
if $XGETTEXT --omit-header --copyright-holder= /dev/null >/dev/null 2>&1 &&
(if $XGETTEXT --omit-header --copyright-holder= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
: ;
else
AC_MSG_RESULT(
[found xgettext program is not GNU xgettext; ignore it])
XGETTEXT=":"
fi
dnl Remove leftover from FreeBSD xgettext call.
rm -f messages.po
fi
AC_OUTPUT_COMMANDS([
for ac_file in $CONFIG_FILES; do
# Support "outfile[:infile[:infile...]]"
case "$ac_file" in
*:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
esac
# PO directories have a Makefile.in generated from Makefile.in.in.
case "$ac_file" in */Makefile.in)
# Adjust a relative srcdir.
ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
# In autoconf-2.13 it is called $ac_given_srcdir.
# In autoconf-2.50 it is called $srcdir.
test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
case "$ac_given_srcdir" in
.) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
/*) top_srcdir="$ac_given_srcdir" ;;
*) top_srcdir="$ac_dots$ac_given_srcdir" ;;
esac
if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
rm -f "$ac_dir/POTFILES"
test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
# ALL_LINGUAS, POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES depend
# on $ac_dir but don't depend on user-specified configuration
# parameters.
if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
# The LINGUAS file contains the set of available languages.
if test -n "$ALL_LINGUAS"; then
test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
fi
ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"`
# Hide the ALL_LINGUAS assigment from automake.
eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
fi
case "$ac_given_srcdir" in
.) srcdirpre= ;;
*) srcdirpre='$(srcdir)/' ;;
esac
POFILES=
GMOFILES=
UPDATEPOFILES=
DUMMYPOFILES=
for lang in $ALL_LINGUAS; do
POFILES="$POFILES $srcdirpre$lang.po"
GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
done
# CATALOGS depends on both $ac_dir and the user's LINGUAS
# environment variable.
INST_LINGUAS=
if test -n "$ALL_LINGUAS"; then
for presentlang in $ALL_LINGUAS; do
useit=no
if test "%UNSET%" != "$LINGUAS"; then
desiredlanguages="$LINGUAS"
else
desiredlanguages="$ALL_LINGUAS"
fi
for desiredlang in $desiredlanguages; do
# Use the presentlang catalog if desiredlang is
# a. equal to presentlang, or
# b. a variant of presentlang (because in this case,
# presentlang can be used as a fallback for messages
# which are not translated in the desiredlang catalog).
case "$desiredlang" in
"$presentlang"*) useit=yes;;
esac
done
if test $useit = yes; then
INST_LINGUAS="$INST_LINGUAS $presentlang"
fi
done
fi
CATALOGS=
if test -n "$INST_LINGUAS"; then
for lang in $INST_LINGUAS; do
CATALOGS="$CATALOGS $lang.gmo"
done
fi
test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
if test -f "$f"; then
case "$f" in
*.orig | *.bak | *~) ;;
*) cat "$f" >> "$ac_dir/Makefile" ;;
esac
fi
done
fi
;;
esac
done],
[# Capture the value of obsolete ALL_LINGUAS because we need it to compute
# POFILES, GMOFILES, UPDATEPOFILES, DUMMYPOFILES, CATALOGS. But hide it
# from automake.
eval 'ALL_LINGUAS''="$ALL_LINGUAS"'
# Capture the value of LINGUAS because we need it to compute CATALOGS.
LINGUAS="${LINGUAS-%UNSET%}"
])
])
dnl Checks for all prerequisites of the intl subdirectory,
dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS,
dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL.
AC_DEFUN([AM_INTL_SUBDIR],
[
AC_REQUIRE([AC_PROG_INSTALL])dnl
AC_REQUIRE([AM_MKINSTALLDIRS])dnl
AC_REQUIRE([AC_PROG_CC])dnl
AC_REQUIRE([AC_CANONICAL_HOST])dnl
AC_REQUIRE([AC_PROG_RANLIB])dnl
AC_REQUIRE([AC_ISC_POSIX])dnl
AC_REQUIRE([AC_HEADER_STDC])dnl
AC_REQUIRE([AC_C_CONST])dnl
AC_REQUIRE([AC_C_INLINE])dnl
AC_REQUIRE([AC_TYPE_OFF_T])dnl
AC_REQUIRE([AC_TYPE_SIZE_T])dnl
AC_REQUIRE([AC_FUNC_ALLOCA])dnl
AC_REQUIRE([AC_FUNC_MMAP])dnl
AC_REQUIRE([jm_GLIBC21])dnl
AC_REQUIRE([gt_INTDIV0])dnl
AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl
AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl
AC_REQUIRE([gt_INTTYPES_PRI])dnl
AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
stdlib.h string.h unistd.h sys/param.h])
AC_CHECK_FUNCS([feof_unlocked fgets_unlocked getc_unlocked getcwd getegid \
geteuid getgid getuid mempcpy munmap putenv setenv setlocale stpcpy \
strcasecmp strdup strtoul tsearch __argz_count __argz_stringify __argz_next])
AM_ICONV
AM_LANGINFO_CODESET
if test $ac_cv_header_locale_h = yes; then
AM_LC_MESSAGES
fi
dnl intl/plural.c is generated from intl/plural.y. It requires bison,
dnl because plural.y uses bison specific features. It requires at least
dnl bison-1.26 because earlier versions generate a plural.c that doesn't
dnl compile.
dnl bison is only needed for the maintainer (who touches plural.y). But in
dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put
dnl the rule in general Makefile. Now, some people carelessly touch the
dnl files or have a broken "make" program, hence the plural.c rule will
dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not
dnl present or too old.
AC_CHECK_PROGS([INTLBISON], [bison])
if test -z "$INTLBISON"; then
ac_verc_fail=yes
else
dnl Found it, now check the version.
AC_MSG_CHECKING([version of bison])
changequote(<<,>>)dnl
ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
case $ac_prog_version in
'') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)
changequote([,])dnl
ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
*) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
esac
AC_MSG_RESULT([$ac_prog_version])
fi
if test $ac_verc_fail = yes; then
INTLBISON=:
fi
])
AC_DEFUN([AM_MKINSTALLDIRS],
[
dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
dnl find the mkinstalldirs script in another subdir but $(top_srcdir).
dnl Try to locate is.
MKINSTALLDIRS=
if test -n "$ac_aux_dir"; then
MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs"
fi
if test -z "$MKINSTALLDIRS"; then
MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
fi
AC_SUBST(MKINSTALLDIRS)
])
dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version])
AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
--- NEW FILE: glibc21.m4 ---
# glibc21.m4 serial 2 (fileutils-4.1.3, gettext-0.10.40)
dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
# Test for the GNU C Library, version 2.1 or newer.
# From Bruno Haible.
AC_DEFUN([jm_GLIBC21],
[
AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer,
ac_cv_gnu_library_2_1,
[AC_EGREP_CPP([Lucky GNU user],
[
#include <features.h>
#ifdef __GNU_LIBRARY__
#if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)
Lucky GNU user
#endif
#endif
],
ac_cv_gnu_library_2_1=yes,
ac_cv_gnu_library_2_1=no)
]
)
AC_SUBST(GLIBC21)
GLIBC21="$ac_cv_gnu_library_2_1"
]
)
--- NEW FILE: iconv.m4 ---
# iconv.m4 serial AM4 (gettext-0.11.3)
dnl Copyright (C) 2000-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Bruno Haible.
AC_DEFUN([AM_ICONV_LINKFLAGS_BODY],
[
dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
AC_REQUIRE([AC_LIB_RPATH])
dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
dnl accordingly.
AC_LIB_LINKFLAGS_BODY([iconv])
])
AC_DEFUN([AM_ICONV_LINK],
[
dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
dnl those with the standalone portable GNU libiconv installed).
dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
dnl accordingly.
AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
dnl Add $INCICONV to CPPFLAGS before performing the following checks,
dnl because if the user has installed libiconv and not disabled its use
dnl via --without-libiconv-prefix, he wants to use it. The first
dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed.
am_save_CPPFLAGS="$CPPFLAGS"
AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])
AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
am_cv_func_iconv="no, consider installing GNU libiconv"
am_cv_lib_iconv=no
AC_TRY_LINK([#include <stdlib.h>
#include <iconv.h>],
[iconv_t cd = iconv_open("","");
iconv(cd,NULL,NULL,NULL,NULL);
iconv_close(cd);],
am_cv_func_iconv=yes)
if test "$am_cv_func_iconv" != yes; then
am_save_LIBS="$LIBS"
LIBS="$LIBS $LIBICONV"
AC_TRY_LINK([#include <stdlib.h>
#include <iconv.h>],
[iconv_t cd = iconv_open("","");
iconv(cd,NULL,NULL,NULL,NULL);
iconv_close(cd);],
am_cv_lib_iconv=yes
am_cv_func_iconv=yes)
LIBS="$am_save_LIBS"
fi
])
if test "$am_cv_func_iconv" = yes; then
AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
fi
if test "$am_cv_lib_iconv" = yes; then
AC_MSG_CHECKING([how to link with libiconv])
AC_MSG_RESULT([$LIBICONV])
else
dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
dnl either.
CPPFLAGS="$am_save_CPPFLAGS"
LIBICONV=
LTLIBICONV=
fi
AC_SUBST(LIBICONV)
AC_SUBST(LTLIBICONV)
])
AC_DEFUN([AM_ICONV],
[
AM_ICONV_LINK
if test "$am_cv_func_iconv" = yes; then
AC_MSG_CHECKING([for iconv declaration])
AC_CACHE_VAL(am_cv_proto_iconv, [
AC_TRY_COMPILE([
#include <stdlib.h>
#include <iconv.h>
extern
#ifdef __cplusplus
"C"
#endif
#if defined(__STDC__) || defined(__cplusplus)
size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
#else
size_t iconv();
#endif
], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const")
am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
AC_MSG_RESULT([$]{ac_t:-
}[$]am_cv_proto_iconv)
AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,
[Define as const if the declaration of iconv() needs const.])
fi
])
--- NEW FILE: intdiv0.m4 ---
# intdiv0.m4 serial 1 (gettext-0.11.3)
dnl Copyright (C) 2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Bruno Haible.
AC_DEFUN([gt_INTDIV0],
[
AC_REQUIRE([AC_PROG_CC])dnl
AC_REQUIRE([AC_CANONICAL_HOST])dnl
AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
gt_cv_int_divbyzero_sigfpe,
[
AC_TRY_RUN([
#include <stdlib.h>
#include <signal.h>
static void
#ifdef __cplusplus
sigfpe_handler (int sig)
#else
sigfpe_handler (sig) int sig;
#endif
{
/* Exit with code 0 if SIGFPE, with code 1 if any other signal. */
exit (sig != SIGFPE);
}
int x = 1;
int y = 0;
int z;
int nan;
int main ()
{
signal (SIGFPE, sigfpe_handler);
/* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */
#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
signal (SIGTRAP, sigfpe_handler);
#endif
/* Linux/SPARC yields signal SIGILL. */
#if defined (__sparc__) && defined (__linux__)
signal (SIGILL, sigfpe_handler);
#endif
z = x / y;
nan = y / y;
exit (1);
}
], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no,
[
# Guess based on the CPU.
case "$host_cpu" in
alpha* | i[34567]86 | m68k | s390*)
gt_cv_int_divbyzero_sigfpe="guessing yes";;
*)
gt_cv_int_divbyzero_sigfpe="guessing no";;
esac
])
])
case "$gt_cv_int_divbyzero_sigfpe" in
*yes) value=1;;
*) value=0;;
esac
AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value,
[Define if integer division by zero raises signal SIGFPE.])
])
--- NEW FILE: inttypes-pri.m4 ---
# inttypes-pri.m4 serial 1 (gettext-0.11.4)
dnl Copyright (C) 1997-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Bruno Haible.
# Define PRI_MACROS_BROKEN if <inttypes.h> exists and defines the PRI*
# macros to non-string values. This is the case on AIX 4.3.3.
AC_DEFUN([gt_INTTYPES_PRI],
[
AC_REQUIRE([gt_HEADER_INTTYPES_H])
if test $gt_cv_header_inttypes_h = yes; then
AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken],
gt_cv_inttypes_pri_broken,
[
AC_TRY_COMPILE([#include <inttypes.h>
#ifdef PRId32
char *p = PRId32;
#endif
], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes)
])
fi
if test "$gt_cv_inttypes_pri_broken" = yes; then
AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1,
[Define if <inttypes.h> exists and defines unusable PRI* macros.])
fi
])
--- NEW FILE: inttypes.m4 ---
# inttypes.m4 serial 1 (gettext-0.11.4)
dnl Copyright (C) 1997-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Paul Eggert.
# Define HAVE_INTTYPES_H if <inttypes.h> exists and doesn't clash with
# <sys/types.h>.
AC_DEFUN([gt_HEADER_INTTYPES_H],
[
AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h,
[
AC_TRY_COMPILE(
[#include <sys/types.h>
#include <inttypes.h>],
[], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no)
])
if test $gt_cv_header_inttypes_h = yes; then
AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1,
[Define if <inttypes.h> exists and doesn't clash with <sys/types.h>.])
fi
])
--- NEW FILE: inttypes_h.m4 ---
# inttypes_h.m4 serial 4 (gettext-0.11.4)
dnl Copyright (C) 1997-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Paul Eggert.
# Define HAVE_INTTYPES_H_WITH_UINTMAX if <inttypes.h> exists,
# doesn't clash with <sys/types.h>, and declares uintmax_t.
AC_DEFUN([jm_AC_HEADER_INTTYPES_H],
[
AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h,
[AC_TRY_COMPILE(
[#include <sys/types.h>
#include <inttypes.h>],
[uintmax_t i = (uintmax_t) -1;],
jm_ac_cv_header_inttypes_h=yes,
jm_ac_cv_header_inttypes_h=no)])
if test $jm_ac_cv_header_inttypes_h = yes; then
AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1,
[Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,
and declares uintmax_t. ])
fi
])
--- NEW FILE: isc-posix.m4 ---
# isc-posix.m4 serial 2 (gettext-0.11.2)
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
# This file is not needed with autoconf-2.53 and newer. Remove it in 2005.
# This test replaces the one in autoconf.
# Currently this macro should have the same name as the autoconf macro
# because gettext's gettext.m4 (distributed in the automake package)
# still uses it. Otherwise, the use in gettext.m4 makes autoheader
# give these diagnostics:
# configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
# configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
undefine([AC_ISC_POSIX])
AC_DEFUN([AC_ISC_POSIX],
[
dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
]
)
--- NEW FILE: lcmessage.m4 ---
# lcmessage.m4 serial 3 (gettext-0.11.3)
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl
dnl This file can can be used in projects which are not available under
dnl the GNU General Public License or the GNU Library General Public
dnl License but which still want to provide support for the GNU gettext
dnl functionality.
dnl Please note that the actual code of the GNU gettext library is covered
dnl by the GNU Library General Public License, and the rest of the GNU
dnl gettext package package is covered by the GNU General Public License.
dnl They are *not* in the public domain.
dnl Authors:
dnl Ulrich Drepper <dr...@cy...>, 1995.
# Check whether LC_MESSAGES is available in <locale.h>.
AC_DEFUN([AM_LC_MESSAGES],
[
AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES,
[AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)])
if test $am_cv_val_LC_MESSAGES = yes; then
AC_DEFINE(HAVE_LC_MESSAGES, 1,
[Define if your <locale.h> file defines LC_MESSAGES.])
fi
])
--- NEW FILE: lib-ld.m4 ---
# lib-ld.m4 serial 1 (gettext-0.11)
dnl Copyright (C) 1996-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl Subroutines of libtool.m4,
dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision
dnl with libtool.m4.
dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no.
AC_DEFUN([AC_LIB_PROG_LD_GNU],
[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld,
[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
acl_cv_prog_gnu_ld=yes
else
acl_cv_prog_gnu_ld=no
fi])
with_gnu_ld=$acl_cv_prog_gnu_ld
])
dnl From libtool-1.4. Sets the variable LD.
AC_DEFUN([AC_LIB_PROG_LD],
[AC_ARG_WITH(gnu-ld,
[ --with-gnu-ld assume the C compiler uses GNU ld [default=no]],
test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
AC_REQUIRE([AC_PROG_CC])dnl
AC_REQUIRE([AC_CANONICAL_HOST])dnl
ac_prog=ld
if test "$GCC" = yes; then
# Check if gcc -print-prog-name=ld gives a path.
AC_MSG_CHECKING([for ld used by GCC])
case $host in
*-*-mingw*)
# gcc leaves a trailing carriage return which upsets mingw
ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
*)
ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
esac
case $ac_prog in
# Accept absolute paths.
[[\\/]* | [A-Za-z]:[\\/]*)]
[re_direlt='/[^/][^/]*/\.\./']
# Canonicalize the path of ld
ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
done
test -z "$LD" && LD="$ac_prog"
;;
"")
# If it fails, then pretend we aren't using GCC.
ac_prog=ld
;;
*)
# If it is relative, then search for the first ld in PATH.
with_gnu_ld=unknown
;;
esac
elif test "$with_gnu_ld" = yes; then
AC_MSG_CHECKING([for GNU ld])
else
AC_MSG_CHECKING([for non-GNU ld])
fi
AC_CACHE_VAL(acl_cv_path_LD,
[if test -z "$LD"; then
IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
for ac_dir in $PATH; do
test -z "$ac_dir" && ac_dir=.
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
acl_cv_path_LD="$ac_dir/$ac_prog"
# Check to see if the program is GNU ld. I'd rather use --version,
# but apparently some GNU ld's only accept -v.
# Break only if it was the GNU/non-GNU ld that we prefer.
if "$acl_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
test "$with_gnu_ld" != no && break
else
test "$with_gnu_ld" != yes && break
fi
fi
done
IFS="$ac_save_ifs"
else
acl_cv_path_LD="$LD" # Let the user override the test with a path.
fi])
LD="$acl_cv_path_LD"
if test -n "$LD"; then
AC_MSG_RESULT($LD)
else
AC_MSG_RESULT(no)
fi
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
AC_LIB_PROG_LD_GNU
])
--- NEW FILE: lib-link.m4 ---
# lib-link.m4 serial 3 (gettext-0.11.3)
dnl Copyright (C) 2001-2002 Free Software Foundation, Inc.
dnl This file is free software, distributed under the terms of the GNU
dnl General Public License. As a special exception to the GNU General
dnl Public License, this file may be distributed as part of a program
dnl that contains a configuration script generated by Autoconf, under
dnl the same distribution terms as the rest of that program.
dnl From Bruno Haible.
dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and
dnl the libraries corresponding to explicit and implicit dependencies.
dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and
dnl augments the CPPFLAGS variable.
AC_DEFUN([AC_LIB_LINKFLAGS],
[
AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
AC_REQUIRE([AC_LIB_RPATH])
define([Name],[translit([$1],[./-], [___])])
define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [
AC_LIB_LINKFLAGS_BODY([$1], [$2])
ac_cv_lib[]Name[]_libs="$LIB[]NAME"
ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME"
ac_cv_lib[]Name[]_cppflags="$INC[]NAME"
])
LIB[]NAME="$ac_cv_lib[]Name[]_libs"
LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs"
INC[]NAME="$ac_cv_lib[]Name[]_cppflags"
AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
AC_SUBST([LIB]NAME)
AC_SUBST([LTLIB]NAME)
dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the
dnl results of this search when this library appears as a dependency.
HAVE_LIB[]NAME=yes
undefine([Name])
undefine([NAME])
])
dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode)
dnl searches for libname and the libraries corresponding to explicit and
dnl implicit dependencies, together with the specified include files and
dnl the ability to compile and link the specified testcode. If found, it
dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and
dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and
dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs
dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty.
AC_DEFUN([AC_LIB_HAVE_LINKFLAGS],
[
AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
AC_REQUIRE([AC_LIB_RPATH])
define([Name],[translit([$1],[./-], [___])])
define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME
dnl accordingly.
AC_LIB_LINKFLAGS_BODY([$1], [$2])
dnl Add $INC[]NAME to CPPFLAGS before performing the following checks,
dnl because if the user has installed lib[]Name and not disabled its use
dnl via --without-lib[]Name-prefix, he wants to use it.
ac_save_CPPFLAGS="$CPPFLAGS"
AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [
ac_save_LIBS="$LIBS"
LIBS="$LIBS $LIB[]NAME"
AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no])
LIBS="$ac_save_LIBS"
])
if test "$ac_cv_lib[]Name" = yes; then
HAVE_LIB[]NAME=yes
AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.])
AC_MSG_CHECKING([how to link with lib[]$1])
AC_MSG_RESULT([$LIB[]NAME])
else
HAVE_LIB[]NAME=no
dnl If $LIB[]NAME didn't lead to a usable library, we don't need
dnl $INC[]NAME either.
CPPFLAGS="$ac_save_CPPFLAGS"
LIB[]NAME=
LTLIB[]NAME=
fi
AC_SUBST([HAVE_LIB]NAME)
AC_SUBST([LIB]NAME)
AC_SUBST([LTLIB]NAME)
undefine([Name])
undefine([NAME])
])
dnl Determine the platform dependent parameters needed to use rpath:
dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator,
dnl hardcode_direct, hardcode_minus_L,
dnl sys_lib_search_path_spec, sys_lib_dlsearch_path_spec.
AC_DEFUN([AC_LIB_RPATH],
[
AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS
AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld
AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host
AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir
AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [
CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
. ./conftest.sh
rm -f ./conftest.sh
acl_cv_rpath=done
])
wl="$acl_cv_wl"
libext="$acl_cv_libext"
shlibext="$acl_cv_shlibext"
hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
hardcode_direct="$acl_cv_hardcode_direct"
hardcode_minus_L="$acl_cv_hardcode_minus_L"
sys_lib_search_path_spec="$acl_cv_sys_lib_search_path_spec"
sys_lib_dlsearch_path_spec="$acl_cv_sys_lib_dlsearch_path_spec"
dnl Determine whether the user wants rpath handling at all.
AC_ARG_ENABLE(rpath,
[ --disable-rpath do not hardcode runtime library paths],
:, enable_rpath=yes)
])
dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and
dnl the libraries corresponding to explicit and implicit dependencies.
dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables.
AC_DEFUN([AC_LIB_LINKFLAGS_BODY],
[
define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
[ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
dnl By default, look in $includedir and $libdir.
use_additional=yes
AC_LIB_WITH_FINAL_PREFIX([
eval additional_includedir=\"$includedir\"
eval additional_libdir=\"$libdir\"
])
AC_ARG_WITH([lib$1-prefix],
[ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib
--without-lib$1-prefix don't search for lib$1 in includedir and libdir],
[
if test "X$withval" = "Xno"; then
use_additional=no
else
if test "X$withval" = "X"; then
AC_LIB_WITH_FINAL_PREFIX([
eval additional_includedir=\"$includedir\"
eval additional_libdir=\"$libdir\"
])
else
additional_includedir="$withval/include"
additional_libdir="$withval/lib"
fi
fi
])
dnl Search the library and its dependencies in $additional_libdir and
dnl $LDFLAGS. Using breadth-first-seach.
LIB[]NAME=
LTLIB[]NAME=
INC[]NAME=
rpathdirs=
ltrpathdirs=
names_already_handled=
names_next_round='$1 $2'
while test -n "$names_next_round"; do
names_this_round="$names_next_round"
names_next_round=
for name in $names_this_round; do
already_handled=
for n in $names_already_handled; do
if test "$n" = "$name"; then
already_handled=yes
break
fi
done
if test -z "$already_handled"; then
names_already_handled="$names_already_handled $name"
dnl See if it was already located by an earlier AC_LIB_LINKFLAGS
dnl or AC_LIB_HAVE_LINKFLAGS call.
uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
eval value=\"\$HAVE_LIB$uppername\"
if test -n "$value"; then
if test "$value" = yes; then
eval value=\"\$LIB$uppername\"
test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value"
eval value=\"\$LTLIB$uppername\"
test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value"
else
dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined
dnl that this library doesn't exist. So just drop it.
:
fi
else
dnl Search the library lib$name in $additional_libdir and $LDFLAGS
dnl and the already constructed $LIBNAME/$LTLIBNAME.
found_dir=
found_la=
found_so=
found_a=
if test $use_additional = yes; then
if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
found_dir="$additional_libdir"
found_so="$additional_libdir/lib$name.$shlibext"
if test -f "$additional_libdir/lib$name.la"; then
found_la="$additional_libdir/lib$name.la"
fi
else
if test -f "$additional_libdir/lib$name.$libext"; then
found_dir="$additional_libdir"
found_a="$additional_libdir/lib$name.$libext"
if test -f "$additional_libdir/lib$name.la"; then
found_la="$additional_libdir/lib$name.la"
fi
fi
fi
fi
if test "X$found_dir" = "X"; then
for x in $LDFLAGS $LTLIB[]NAME; do
AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
case "$x" in
-L*)
dir=`echo "X$x" | sed -e 's/^X-L//'`
if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
found_dir="$dir"
found_so="$dir/lib$name.$shlibext"
if test -f "$dir/lib$name.la"; then
found_la="$dir/lib$name.la"
fi
else
if test -f "$dir/lib$name.$libext"; then
found_dir="$dir"
found_a="$dir/lib$name.$libext"
if test -f "$dir/lib$name.la"; then
found_la="$dir/lib$name.la"
fi
fi
fi
;;
esac
if test "X$found_dir" != "X"; then
break
fi
done
fi
if test "X$found_dir" != "X"; then
dnl Found the library.
LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name"
if test "X$found_so" != "X"; then
dnl Linking with a shared library. We attempt to hardcode its
dnl directory into the executable's runpath, unless it's the
dnl standard /usr/lib.
if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
dnl No hardcoding is needed.
LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
else
dnl Use an explicit option to hardcode DIR into the resulting
dnl binary.
dnl Potentially add DIR to ltrpathdirs.
dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
haveit=
for x in $ltrpathdirs; do
if test "X$x" = "X$found_dir"; then
haveit=yes
break
fi
done
if test -z "$haveit"; then
ltrpathdirs="$ltrpathdirs $found_dir"
fi
dnl The hardcoding into $LIBNAME is system dependent.
if test "$hardcode_direct" = yes; then
dnl Using DIR/libNAME.so during linking hardcodes DIR into the
dnl resulting binary.
LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
else
if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
dnl Use an explicit option to hardcode DIR into the resulting
dnl binary.
LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
dnl Potentially add DIR to rpathdirs.
dnl The rpathdirs will be appended to $LIBNAME at the end.
haveit=
for x in $rpathdirs; do
if test "X$x" = "X$found_dir"; then
haveit=yes
break
fi
done
if test -z "$haveit"; then
rpathdirs="$rpathdirs $found_dir"
fi
else
dnl Rely on "-L$found_dir".
dnl But don't add it if it's already contained in the LDFLAGS
dnl or the alr...
[truncated message content] |
|
From: <os...@us...> - 2002-08-24 20:54:20
|
Update of /cvsroot/lib/LIB/lib/poziomy/rozne
In directory usw-pr-cvs1:/tmp/cvs-serv4325/lib/poziomy/rozne
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/lib/poziomy/rozne/Makefile.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Makefile.in 24 Aug 2002 14:16:54 -0000 1.11
--- Makefile.in 24 Aug 2002 20:54:17 -0000 1.12
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 32,42 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ../../..
--- 34,40 ----
***************
*** 46,55 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 44,57 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 60,63 ****
--- 62,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 65,72 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 81,166 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
noinst_DATA = las_i_woda terinyo
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../../../config2.h
! CONFIG_CLEAN_FILES =
! DATA = $(noinst_DATA)
!
! DIST_COMMON = Makefile.am Makefile.in
!
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
- TAR = tar
- GZIP_ENV = --best
- all: all-redirect
.SUFFIXES:
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/poziomy/rozne/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
tags: TAGS
TAGS:
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
!
! subdir = lib/poziomy/rozne
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu lib/poziomy/rozne/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
- info-am:
- info: info-am
- dvi-am:
- dvi: dvi-am
check-am: all-am
check: check-am
! installcheck-am:
! installcheck: installcheck-am
! install-exec-am:
! install-exec: install-exec-am
! install-data-am:
! install-data: install-data-am
- install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
! uninstall-am:
uninstall: uninstall-am
- all-am: Makefile $(DATA)
- all-redirect: all-am
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs:
mostlyclean-generic:
--- 90,171 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
noinst_DATA = las_i_woda terinyo
+ subdir = lib/poziomy/rozne
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! DIST_SOURCES =
! DATA = $(noinst_DATA)
! DIST_COMMON = Makefile.am Makefile.in
! all: all-am
.SUFFIXES:
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu lib/poziomy/rozne/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
! uninstall-info-am:
tags: TAGS
TAGS:
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ../../..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
check-am: all-am
check: check-am
! all-am: Makefile $(DATA)
! installdirs:
install: install-am
! install-exec: install-exec-am
! install-data: install-data-am
uninstall: uninstall-am
+ install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-am
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 169,200 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-generic
! mostlyclean: mostlyclean-am
! clean-am: clean-generic mostlyclean-am
! clean: clean-am
! distclean-am: distclean-generic clean-am
! distclean: distclean-am
! maintainer-clean-am: maintainer-clean-generic distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
! .PHONY: tags distdir info-am info dvi-am dvi check check-am \
! installcheck-am installcheck install-exec-am install-exec \
! install-data-am install-data install-am install uninstall-am uninstall \
! all-redirect all-am all installdirs mostlyclean-generic \
! distclean-generic clean-generic maintainer-clean-generic clean \
! mostlyclean distclean maintainer-clean
# Tell versions [3.59,3.63) of GNU make to not export all variables.
--- 174,224 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-am
! clean-am: clean-generic mostlyclean-am
! distclean: distclean-am
! distclean-am: clean-am distclean-generic
! dvi: dvi-am
! dvi-am:
! info: info-am
!
! info-am:
!
! install-data-am:
!
! install-exec-am:
!
! install-info: install-info-am
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-am
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-am
+ mostlyclean-am: mostlyclean-generic
+
+ uninstall-am: uninstall-info-am
+
+ .PHONY: all all-am check check-am clean clean-generic distclean \
+ distclean-generic distdir dvi dvi-am info info-am install \
+ install-am install-data install-data-am install-exec \
+ install-exec-am install-info install-info-am install-man \
+ install-strip installcheck installcheck-am installdirs \
+ maintainer-clean maintainer-clean-generic mostlyclean \
+ mostlyclean-generic uninstall uninstall-am uninstall-info-am
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
From: <os...@us...> - 2002-08-24 20:54:20
|
Update of /cvsroot/lib/LIB/lib/poziomy/WIEZ
In directory usw-pr-cvs1:/tmp/cvs-serv4325/lib/poziomy/WIEZ
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/lib/poziomy/WIEZ/Makefile.in,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Makefile.in 24 Aug 2002 14:16:54 -0000 1.10
--- Makefile.in 24 Aug 2002 20:54:16 -0000 1.11
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 32,42 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ../../..
--- 34,40 ----
***************
*** 46,55 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 44,57 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 60,63 ****
--- 62,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 65,72 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 81,167 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
noinst_DATA = przed1 wieza0 wieza1
CLEANFILES = przed1
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../../../config2.h
! CONFIG_CLEAN_FILES =
! DATA = $(noinst_DATA)
!
! DIST_COMMON = Makefile.am Makefile.in
!
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
- TAR = tar
- GZIP_ENV = --best
- all: all-redirect
.SUFFIXES:
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/poziomy/WIEZ/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
tags: TAGS
TAGS:
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
!
! subdir = lib/poziomy/WIEZ
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu lib/poziomy/WIEZ/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
- info-am:
- info: info-am
- dvi-am:
- dvi: dvi-am
check-am: all-am
check: check-am
! installcheck-am:
! installcheck: installcheck-am
! install-exec-am:
! install-exec: install-exec-am
! install-data-am:
! install-data: install-data-am
- install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
! uninstall-am:
uninstall: uninstall-am
- all-am: Makefile $(DATA)
- all-redirect: all-am
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs:
mostlyclean-generic:
--- 90,172 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
noinst_DATA = przed1 wieza0 wieza1
CLEANFILES = przed1
+ subdir = lib/poziomy/WIEZ
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! DIST_SOURCES =
! DATA = $(noinst_DATA)
! DIST_COMMON = Makefile.am Makefile.in
! all: all-am
.SUFFIXES:
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu lib/poziomy/WIEZ/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
! uninstall-info-am:
tags: TAGS
TAGS:
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ../../..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
check-am: all-am
check: check-am
! all-am: Makefile $(DATA)
! installdirs:
install: install-am
! install-exec: install-exec-am
! install-data: install-data-am
uninstall: uninstall-am
+ install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-am
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 171,205 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-generic
! mostlyclean: mostlyclean-am
! clean-am: clean-generic mostlyclean-am
! clean: clean-am
! distclean-am: distclean-generic clean-am
! distclean: distclean-am
! maintainer-clean-am: maintainer-clean-generic distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
! .PHONY: tags distdir info-am info dvi-am dvi check check-am \
! installcheck-am installcheck install-exec-am install-exec \
! install-data-am install-data install-am install uninstall-am uninstall \
! all-redirect all-am all installdirs mostlyclean-generic \
! distclean-generic clean-generic maintainer-clean-generic clean \
! mostlyclean distclean maintainer-clean
przed1: $(top_builddir)/utils/convprzpoz przedmioty1
$(top_builddir)/utils/convprzpoz przedmioty1 przed1
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
--- 176,229 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-am
! clean-am: clean-generic mostlyclean-am
! distclean: distclean-am
! distclean-am: clean-am distclean-generic
! dvi: dvi-am
! dvi-am:
! info: info-am
!
! info-am:
!
! install-data-am:
!
! install-exec-am:
!
! install-info: install-info-am
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-am
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-am
!
! mostlyclean-am: mostlyclean-generic
!
! uninstall-am: uninstall-info-am
!
! .PHONY: all all-am check check-am clean clean-generic distclean \
! distclean-generic distdir dvi dvi-am info info-am install \
! install-am install-data install-data-am install-exec \
! install-exec-am install-info install-info-am install-man \
! install-strip installcheck installcheck-am installdirs \
! maintainer-clean maintainer-clean-generic mostlyclean \
! mostlyclean-generic uninstall uninstall-am uninstall-info-am
przed1: $(top_builddir)/utils/convprzpoz przedmioty1
$(top_builddir)/utils/convprzpoz przedmioty1 przed1
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
From: <os...@us...> - 2002-08-24 20:54:20
|
Update of /cvsroot/lib/LIB/lib
In directory usw-pr-cvs1:/tmp/cvs-serv4325/lib
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/lib/Makefile.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** Makefile.in 24 Aug 2002 14:16:53 -0000 1.13
--- Makefile.in 24 Aug 2002 20:54:16 -0000 1.14
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 32,42 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ..
--- 34,40 ----
***************
*** 46,55 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 44,57 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 60,63 ****
--- 62,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 65,72 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 81,118 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
SUBDIRS = poziomy
noinst_DATA = ksiazkib pliki schekw swiatb tab_potw tab_przedm terenyb zdarzeniab poziomy materialy materialyb schanat preIDb
CLEANFILES = ksiazkib schekw swiatb tab_potw tab_przedm terenyb zdarzeniab *lst *.h materialyb schanat preIDb
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../config2.h
! CONFIG_CLEAN_FILES =
! DATA = $(noinst_DATA)
!
! DIST_COMMON = Makefile.am Makefile.in
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
- TAR = tar
- GZIP_ENV = --best
- all: all-redirect
.SUFFIXES:
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
# This directory's subdirectories are mostly independent; you can cd
--- 90,130 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
SUBDIRS = poziomy
noinst_DATA = ksiazkib pliki schekw swiatb tab_potw tab_przedm terenyb zdarzeniab poziomy materialy materialyb schanat preIDb
CLEANFILES = ksiazkib schekw swiatb tab_potw tab_przedm terenyb zdarzeniab *lst *.h materialyb schanat preIDb
+ subdir = lib
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! DIST_SOURCES =
! DATA = $(noinst_DATA)
! RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
! uninstall-info-recursive all-recursive install-data-recursive \
! install-exec-recursive installdirs-recursive install-recursive \
! uninstall-recursive check-recursive installcheck-recursive
! DIST_COMMON = Makefile.am Makefile.in
! DIST_SUBDIRS = $(SUBDIRS)
! all: all-recursive
.SUFFIXES:
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu lib/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
! uninstall-info-am:
# This directory's subdirectories are mostly independent; you can cd
***************
*** 122,132 ****
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
!
! @SET_MAKE@
!
! all-recursive install-data-recursive install-exec-recursive \
! installdirs-recursive install-recursive uninstall-recursive \
! check-recursive installcheck-recursive info-recursive dvi-recursive:
! @set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
--- 134,139 ----
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
! $(RECURSIVE_TARGETS):
! @set fnord $$MAKEFLAGS; amf=$$2; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
***************
*** 148,158 ****
mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
! @set fnord $(MAKEFLAGS); amf=$$2; \
dot_seen=no; \
! rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
! rev="$$subdir $$rev"; \
! test "$$subdir" != "." || dot_seen=yes; \
done; \
! test "$$dot_seen" = "no" && rev=". $$rev"; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
--- 155,170 ----
mostlyclean-recursive clean-recursive distclean-recursive \
maintainer-clean-recursive:
! @set fnord $$MAKEFLAGS; amf=$$2; \
dot_seen=no; \
! case "$@" in \
! distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
! *) list='$(SUBDIRS)' ;; \
! esac; \
! rev=''; for subdir in $$list; do \
! if test "$$subdir" = "."; then :; else \
! rev="$$subdir $$rev"; \
! fi; \
done; \
! rev="$$rev ."; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
***************
*** 171,265 ****
done
tags: TAGS
! ID: $(HEADERS) $(SOURCES) $(LISP)
! list='$(SOURCES) $(HEADERS)'; \
! unique=`for i in $$list; do echo $$i; done | \
! awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! here=`pwd` && cd $(srcdir) \
! && mkid -f$$here/ID $$unique $(LISP)
! TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
! if test "$$subdir" = .; then :; else \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
! fi; \
done; \
! list='$(SOURCES) $(HEADERS)'; \
! unique=`for i in $$list; do echo $$i; done | \
! awk ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
! || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags $$unique $(LISP))
!
! mostlyclean-tags:
! clean-tags:
distclean-tags:
! -rm -f TAGS ID
!
! maintainer-clean-tags:
!
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
! subdir = lib
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu lib/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
! for subdir in $(SUBDIRS); do \
if test "$$subdir" = .; then :; else \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
! chmod 777 $(distdir)/$$subdir; \
! (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
|| exit 1; \
fi; \
done
- info-am:
- info: info-recursive
- dvi-am:
- dvi: dvi-recursive
check-am: all-am
check: check-recursive
! installcheck-am:
! installcheck: installcheck-recursive
! install-exec-am:
! install-exec: install-exec-recursive
! install-data-am:
install-data: install-data-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
- install: install-recursive
- uninstall-am:
- uninstall: uninstall-recursive
- all-am: Makefile $(DATA)
- all-redirect: all-recursive
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs: installdirs-recursive
- installdirs-am:
-
mostlyclean-generic:
--- 183,285 ----
done
+ ETAGS = etags
+ ETAGSFLAGS =
+
tags: TAGS
! ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
! list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
! unique=`for i in $$list; do \
! if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
! done | \
! $(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! mkid -fID $$unique
! TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
! $(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
! if test "$$subdir" = .; then :; else \
test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
! fi; \
done; \
! list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
! unique=`for i in $$list; do \
! if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
! done | \
! $(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
! test -z "$(ETAGS_ARGS)$$tags$$unique" \
! || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
! $$tags $$unique
! GTAGS:
! here=`$(am__cd) $(top_builddir) && pwd` \
! && cd $(top_srcdir) \
! && gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
! -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
! DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
! list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d $(distdir)/$$subdir \
|| mkdir $(distdir)/$$subdir \
|| exit 1; \
! (cd $$subdir && \
! $(MAKE) $(AM_MAKEFLAGS) \
! top_distdir="$(top_distdir)" \
! distdir=../$(distdir)/$$subdir \
! distdir) \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-recursive
! all-am: Makefile $(DATA)
! installdirs: installdirs-recursive
! installdirs-am:
! install: install-recursive
! install-exec: install-exec-recursive
install-data: install-data-recursive
+ uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-recursive
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 269,306 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-tags mostlyclean-generic
! mostlyclean: mostlyclean-recursive
! clean-am: clean-tags clean-generic mostlyclean-am
! clean: clean-recursive
! distclean-am: distclean-tags distclean-generic clean-am
! distclean: distclean-recursive
! maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
! distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-recursive
! .PHONY: install-data-recursive uninstall-data-recursive \
! install-exec-recursive uninstall-exec-recursive installdirs-recursive \
! uninstalldirs-recursive all-recursive check-recursive \
! installcheck-recursive info-recursive dvi-recursive \
! mostlyclean-recursive distclean-recursive clean-recursive \
! maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
! distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
! dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
! install-exec install-data-am install-data install-am install \
! uninstall-am uninstall all-redirect all-am all installdirs-am \
! installdirs mostlyclean-generic distclean-generic clean-generic \
! maintainer-clean-generic clean mostlyclean distclean maintainer-clean
ksiazkib: $(top_builddir)/utils/convks ksiazki
--- 289,348 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-recursive
! clean-am: clean-generic mostlyclean-am
! distclean: distclean-recursive
! distclean-am: clean-am distclean-generic distclean-tags
! dvi: dvi-recursive
! dvi-am:
! info: info-recursive
!
! info-am:
!
! install-data-am:
!
! install-exec-am:
!
! install-info: install-info-recursive
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-recursive
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-recursive
!
! mostlyclean-am: mostlyclean-generic
!
! uninstall-am: uninstall-info-am
!
! uninstall-info: uninstall-info-recursive
!
! .PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
! clean-generic clean-recursive distclean distclean-generic \
! distclean-recursive distclean-tags distdir dvi dvi-am \
! dvi-recursive info info-am info-recursive install install-am \
! install-data install-data-am install-data-recursive \
! install-exec install-exec-am install-exec-recursive \
! install-info install-info-am install-info-recursive install-man \
! install-recursive install-strip installcheck installcheck-am \
! installdirs installdirs-am installdirs-recursive \
! maintainer-clean maintainer-clean-generic \
! maintainer-clean-recursive mostlyclean mostlyclean-generic \
! mostlyclean-recursive tags tags-recursive uninstall \
! uninstall-am uninstall-info-am uninstall-info-recursive \
! uninstall-recursive
ksiazkib: $(top_builddir)/utils/convks ksiazki
***************
*** 326,330 ****
preIDb: $(top_builddir)/utils/convpreid preID
$(top_builddir)/utils/convpreid
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
--- 368,371 ----
|
|
From: <os...@us...> - 2002-08-24 20:54:19
|
Update of /cvsroot/lib/LIB/intl
In directory usw-pr-cvs1:/tmp/cvs-serv4325/intl
Modified Files:
Makefile Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile
===================================================================
RCS file: /cvsroot/lib/LIB/intl/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile 11 Jul 2002 19:41:24 -0000 1.2
--- Makefile 24 Aug 2002 20:54:16 -0000 1.3
***************
*** 1,313 ****
! # Generated automatically from Makefile.in by configure.
! # Makefile for directory with message catalog handling in GNU NLS Utilities.
! # Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
! #
! # This program is free software; you can redistribute it and/or modify it
! # under the terms of the GNU Library General Public License as published
! # by the Free Software Foundation; either version 2, or (at your option)
! # any later version.
! #
! # This program is distributed in the hope that it will be useful,
! # but WITHOUT ANY WARRANTY; without even the implied warranty of
! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! # Library General Public License for more details.
! #
! # You should have received a copy of the GNU Library General Public
! # License along with this program; if not, write to the Free Software
! # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
! # USA.
!
! PACKAGE = LIB
! VERSION = 0.1.67
!
! SHELL = /bin/sh
!
! srcdir = .
! top_srcdir = ..
! top_builddir = ..
!
! prefix = /tmp
! exec_prefix = ${prefix}
! transform = s,x,x,
! libdir = ${exec_prefix}/lib
! includedir = ${prefix}/include
! datadir = ${prefix}/share
! localedir = $(datadir)/locale
! gettextsrcdir = $(datadir)/gettext/intl
! aliaspath = $(localedir)
! subdir = intl
!
! INSTALL = /usr/bin/install -c
! INSTALL_DATA = ${INSTALL} -m 644
! MKINSTALLDIRS = ./mkinstalldirs
! mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
!
! l =
!
! AR = ar
! CC = gcc
! LIBTOOL = @LIBTOOL@
! RANLIB = ranlib
! YACC = bison -y -d
! YFLAGS = --name-prefix=__gettext
!
! DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \
! -DLIBDIR=\"$(libdir)\" -DHAVE_CONFIG_H
! CPPFLAGS =
! CFLAGS = -g -O2
! LDFLAGS =
!
! COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
!
! HEADERS = $(COMHDRS) libgnuintl.h libgettext.h loadinfo.h
! COMHDRS = gettext.h gettextP.h hash-string.h
! SOURCES = $(COMSRCS) intl-compat.c
! COMSRCS = bindtextdom.c dcgettext.c dgettext.c gettext.c \
! finddomain.c loadmsgcat.c localealias.c textdomain.c l10nflist.c \
! explodename.c dcigettext.c dcngettext.c dngettext.c ngettext.c plural.y \
! localcharset.c
! OBJECTS = bindtextdom.$lo dcgettext.$lo dgettext.$lo gettext.$lo \
! finddomain.$lo loadmsgcat.$lo localealias.$lo textdomain.$lo l10nflist.$lo \
! explodename.$lo dcigettext.$lo dcngettext.$lo dngettext.$lo ngettext.$lo \
! plural.$lo localcharset.$lo
! GETTOBJS = intl-compat.$lo
! DISTFILES.common = Makefile.in \
! config.charset locale.alias ref-add.sin ref-del.sin $(HEADERS) $(SOURCES)
! DISTFILES.generated = plural.c
! DISTFILES.normal = VERSION
! DISTFILES.gettext = COPYING.LIB-2 COPYING.LIB-2.1 libintl.glibc
! DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c
!
! # Libtool's library version information for libintl.
! # Before making a gettext release, the gettext maintainer must change this
! # according to the libtool documentation, section "Library interface versions".
! # Maintainers of other packages that include the intl directory must *not*
! # change these values.
! LTV_CURRENT=1
! LTV_REVISION=1
! LTV_AGE=0
!
! .SUFFIXES:
! .SUFFIXES: .c .y .o .lo .sin .sed
! .c.o:
! $(COMPILE) $<
! .c.lo:
! $(LIBTOOL) --mode=compile $(COMPILE) $<
!
! .y.c:
! $(YACC) $(YFLAGS) --output $@ $<
! rm -f $*.h
!
! .sin.sed:
! sed -e '/^#/d' -e 's/@''PACKAGE''@/LIB/g' $< > t-$@
! mv t-$@ $@
!
! INCLUDES = -I.. -I. -I$(top_srcdir)/intl
!
! all: all-no
! all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed
! all-no: all-no-no
! all-no-yes: libgnuintl.$la
! all-no-no:
!
! libintl.a libgnuintl.a: $(OBJECTS)
! rm -f $@
! $(AR) cru $@ $(OBJECTS)
! $(RANLIB) $@
!
! libintl.la libgnuintl.la: $(OBJECTS)
! $(LIBTOOL) --mode=link \
! $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \
! $(OBJECTS) \
! -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
! -rpath $(libdir) \
! -no-undefined
!
! libintl.h: libgnuintl.h
! cp $(srcdir)/libgnuintl.h libintl.h
!
! charset.alias: config.charset
! $(SHELL) $(srcdir)/config.charset 'i586-pc-linux-gnu' > t-$@
! mv t-$@ $@
!
! check: all
!
! # This installation goal is only used in GNU gettext. Packages which
! # only use the library should use install instead.
!
! # We must not install the libintl.h/libintl.a files if we are on a
! # system which has the GNU gettext() function in its C library or in a
! # separate library.
! # If you want to use the one which comes with this version of the
! # package, you have to use `configure --with-included-gettext'.
! install: install-exec install-data
! install-exec: all
! if test "$(PACKAGE)" = "gettext" \
! && test '' = '$(GETTOBJS)'; then \
! $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \
! $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \
! $(LIBTOOL) --mode=install \
! $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \
! else \
! : ; \
! fi
! if test 'no' = yes; then \
! $(mkinstalldirs) $(DESTDIR)$(libdir); \
! temp=$(DESTDIR)$(libdir)/t-charset.alias; \
! dest=$(DESTDIR)$(libdir)/charset.alias; \
! if test -f $(DESTDIR)$(libdir)/charset.alias; then \
! orig=$(DESTDIR)$(libdir)/charset.alias; \
! sed -f ref-add.sed $$orig > $$temp; \
! $(INSTALL_DATA) $$temp $$dest; \
! rm -f $$temp; \
! else \
! if test yes = no; then \
! orig=charset.alias; \
! sed -f ref-add.sed $$orig > $$temp; \
! $(INSTALL_DATA) $$temp $$dest; \
! rm -f $$temp; \
! fi; \
! fi; \
! $(mkinstalldirs) $(DESTDIR)$(localedir); \
! test -f $(DESTDIR)$(localedir)/locale.alias \
! && orig=$(DESTDIR)$(localedir)/locale.alias \
! || orig=$(srcdir)/locale.alias; \
! temp=$(DESTDIR)$(localedir)/t-locale.alias; \
! dest=$(DESTDIR)$(localedir)/locale.alias; \
! sed -f ref-add.sed $$orig > $$temp; \
! $(INSTALL_DATA) $$temp $$dest; \
! rm -f $$temp; \
! else \
! : ; \
! fi
! install-data: all
! if test "$(PACKAGE)" = "gettext"; then \
! $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
! $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \
! $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \
! dists="COPYING.LIB-2 COPYING.LIB-2.1 $(DISTFILES.common)"; \
! for file in $$dists; do \
! $(INSTALL_DATA) $(srcdir)/$$file \
! $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \
! dists="$(DISTFILES.generated)"; \
! for file in $$dists; do \
! if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
! $(INSTALL_DATA) $$dir/$$file \
! $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! dists="$(DISTFILES.obsolete)"; \
! for file in $$dists; do \
! rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! else \
! : ; \
! fi
!
! # Define this as empty until I found a useful application.
! installcheck:
!
uninstall:
! if test "$(PACKAGE)" = "gettext" \
! && test '' = '$(GETTOBJS)'; then \
! rm -f $(DESTDIR)$(includedir)/libintl.h; \
! $(LIBTOOL) --mode=uninstall \
! rm -f $(DESTDIR)$(libdir)/libintl.$la; \
! else \
! : ; \
! fi
! if test 'no' = yes; then \
! if test -f $(DESTDIR)$(libdir)/charset.alias; then \
! temp=$(DESTDIR)$(libdir)/t-charset.alias; \
! dest=$(DESTDIR)$(libdir)/charset.alias; \
! sed -f ref-del.sed $$dest > $$temp; \
! if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
! rm -f $$dest; \
! else \
! $(INSTALL_DATA) $$temp $$dest; \
! fi; \
! rm -f $$temp; \
! fi; \
! if test -f $(DESTDIR)$(localedir)/locale.alias; then \
! temp=$(DESTDIR)$(localedir)/t-locale.alias; \
! dest=$(DESTDIR)$(localedir)/locale.alias; \
! sed -f ref-del.sed $$dest > $$temp; \
! if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
! rm -f $$dest; \
! else \
! $(INSTALL_DATA) $$temp $$dest; \
! fi; \
! rm -f $$temp; \
! fi; \
! else \
! : ; \
! fi
! if test "$(PACKAGE)" = "gettext"; then \
! for file in VERSION ChangeLog COPYING.LIB-2 COPYING.LIB-2.1 $(DISTFILES.common) $(DISTFILES.generated); do \
! rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! else \
! : ; \
! fi
!
! info dvi:
!
! $(OBJECTS): ../config.h libgnuintl.h
! bindtextdom.$lo finddomain.$lo loadmsgcat.$lo: gettextP.h gettext.h loadinfo.h
! dcgettext.$lo: gettextP.h gettext.h hash-string.h loadinfo.h
!
! tags: TAGS
!
! TAGS: $(HEADERS) $(SOURCES)
! here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES)
!
! id: ID
!
! ID: $(HEADERS) $(SOURCES)
! here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES)
!
!
! mostlyclean:
! rm -f *.a *.la *.o *.lo core core.*
! rm -f libintl.h charset.alias ref-add.sed ref-del.sed
! rm -f -r .libs _libs
!
! clean: mostlyclean
!
! distclean: clean
! rm -f Makefile ID TAGS
! if test "$(PACKAGE)" = gettext; then \
! rm -f ChangeLog.inst $(DISTFILES.normal); \
! else \
! : ; \
! fi
!
! maintainer-clean: distclean
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
!
!
! # GNU gettext needs not contain the file `VERSION' but contains some
! # other files which should not be distributed in other packages.
! distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
! dist distdir: Makefile
! if test "$(PACKAGE)" = gettext; then \
! additional="$(DISTFILES.gettext)"; \
! else \
! additional="$(DISTFILES.normal)"; \
! fi; \
! $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \
! for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
! if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
! ln $$dir/$$file $(distdir) 2> /dev/null \
! || cp -p $$dir/$$file $(distdir); \
! done
!
! Makefile: Makefile.in ../config.status
! cd .. \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
! # Tell versions [3.59,3.63) of GNU make not to export all variables.
! # Otherwise a system limit (for SysV at least) may be exceeded.
! .NOEXPORT:
--- 1,5 ----
! all:
! install:
uninstall:
! clean:
! distclean:
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/intl/Makefile.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile.in 10 Jul 2002 22:13:50 -0000 1.2
--- Makefile.in 24 Aug 2002 20:54:16 -0000 1.3
***************
*** 1,313 ****
! # Makefile for directory with message catalog handling in GNU NLS Utilities.
! # Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
! #
! # This program is free software; you can redistribute it and/or modify it
! # under the terms of the GNU Library General Public License as published
! # by the Free Software Foundation; either version 2, or (at your option)
! # any later version.
! #
! # This program is distributed in the hope that it will be useful,
! # but WITHOUT ANY WARRANTY; without even the implied warranty of
! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
! # Library General Public License for more details.
! #
! # You should have received a copy of the GNU Library General Public
! # License along with this program; if not, write to the Free Software
! # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
! # USA.
!
! PACKAGE = @PACKAGE@
! VERSION = @VERSION@
!
! SHELL = /bin/sh
!
! srcdir = @srcdir@
! top_srcdir = @top_srcdir@
! top_builddir = ..
! VPATH = @srcdir@
!
! prefix = @prefix@
! exec_prefix = @exec_prefix@
! transform = @program_transform_name@
! libdir = @libdir@
! includedir = @includedir@
! datadir = @datadir@
! localedir = $(datadir)/locale
! gettextsrcdir = $(datadir)/gettext/intl
! aliaspath = $(localedir)
! subdir = intl
!
! INSTALL = @INSTALL@
! INSTALL_DATA = @INSTALL_DATA@
! MKINSTALLDIRS = @MKINSTALLDIRS@
! mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
!
! l = @INTL_LIBTOOL_SUFFIX_PREFIX@
!
! AR = ar
! CC = @CC@
! LIBTOOL = @LIBTOOL@
! RANLIB = @RANLIB@
! YACC = @INTLBISON@ -y -d
! YFLAGS = --name-prefix=__gettext
!
! DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \
! -DLIBDIR=\"$(libdir)\" @DEFS@
! CPPFLAGS = @CPPFLAGS@
! CFLAGS = @CFLAGS@
! LDFLAGS = @LDFLAGS@
!
! COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
!
! HEADERS = $(COMHDRS) libgnuintl.h libgettext.h loadinfo.h
! COMHDRS = gettext.h gettextP.h hash-string.h
! SOURCES = $(COMSRCS) intl-compat.c
! COMSRCS = bindtextdom.c dcgettext.c dgettext.c gettext.c \
! finddomain.c loadmsgcat.c localealias.c textdomain.c l10nflist.c \
! explodename.c dcigettext.c dcngettext.c dngettext.c ngettext.c plural.y \
! localcharset.c
! OBJECTS = @INTLOBJS@ bindtextdom.$lo dcgettext.$lo dgettext.$lo gettext.$lo \
! finddomain.$lo loadmsgcat.$lo localealias.$lo textdomain.$lo l10nflist.$lo \
! explodename.$lo dcigettext.$lo dcngettext.$lo dngettext.$lo ngettext.$lo \
! plural.$lo localcharset.$lo
! GETTOBJS = intl-compat.$lo
! DISTFILES.common = Makefile.in \
! config.charset locale.alias ref-add.sin ref-del.sin $(HEADERS) $(SOURCES)
! DISTFILES.generated = plural.c
! DISTFILES.normal = VERSION
! DISTFILES.gettext = COPYING.LIB-2 COPYING.LIB-2.1 libintl.glibc
! DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c
!
! # Libtool's library version information for libintl.
! # Before making a gettext release, the gettext maintainer must change this
! # according to the libtool documentation, section "Library interface versions".
! # Maintainers of other packages that include the intl directory must *not*
! # change these values.
! LTV_CURRENT=1
! LTV_REVISION=1
! LTV_AGE=0
!
! .SUFFIXES:
! .SUFFIXES: .c .y .o .lo .sin .sed
! .c.o:
! $(COMPILE) $<
! .c.lo:
! $(LIBTOOL) --mode=compile $(COMPILE) $<
!
! .y.c:
! $(YACC) $(YFLAGS) --output $@ $<
! rm -f $*.h
!
! .sin.sed:
! sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
! mv t-$@ $@
!
! INCLUDES = -I.. -I. -I$(top_srcdir)/intl
!
! all: all-@USE_INCLUDED_LIBINTL@
! all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed
! all-no: all-no-@BUILD_INCLUDED_LIBINTL@
! all-no-yes: libgnuintl.$la
! all-no-no:
!
! libintl.a libgnuintl.a: $(OBJECTS)
! rm -f $@
! $(AR) cru $@ $(OBJECTS)
! $(RANLIB) $@
!
! libintl.la libgnuintl.la: $(OBJECTS)
! $(LIBTOOL) --mode=link \
! $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \
! $(OBJECTS) @LIBICONV@ \
! -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \
! -rpath $(libdir) \
! -no-undefined
!
! libintl.h: libgnuintl.h
! cp $(srcdir)/libgnuintl.h libintl.h
!
! charset.alias: config.charset
! $(SHELL) $(srcdir)/config.charset '@host@' > t-$@
! mv t-$@ $@
!
! check: all
!
! # This installation goal is only used in GNU gettext. Packages which
! # only use the library should use install instead.
!
! # We must not install the libintl.h/libintl.a files if we are on a
! # system which has the GNU gettext() function in its C library or in a
! # separate library.
! # If you want to use the one which comes with this version of the
! # package, you have to use `configure --with-included-gettext'.
! install: install-exec install-data
! install-exec: all
! if test "$(PACKAGE)" = "gettext" \
! && test '@INTLOBJS@' = '$(GETTOBJS)'; then \
! $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \
! $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \
! $(LIBTOOL) --mode=install \
! $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \
! else \
! : ; \
! fi
! if test '@USE_INCLUDED_LIBINTL@' = yes; then \
! $(mkinstalldirs) $(DESTDIR)$(libdir); \
! temp=$(DESTDIR)$(libdir)/t-charset.alias; \
! dest=$(DESTDIR)$(libdir)/charset.alias; \
! if test -f $(DESTDIR)$(libdir)/charset.alias; then \
! orig=$(DESTDIR)$(libdir)/charset.alias; \
! sed -f ref-add.sed $$orig > $$temp; \
! $(INSTALL_DATA) $$temp $$dest; \
! rm -f $$temp; \
! else \
! if test @GLIBC21@ = no; then \
! orig=charset.alias; \
! sed -f ref-add.sed $$orig > $$temp; \
! $(INSTALL_DATA) $$temp $$dest; \
! rm -f $$temp; \
! fi; \
! fi; \
! $(mkinstalldirs) $(DESTDIR)$(localedir); \
! test -f $(DESTDIR)$(localedir)/locale.alias \
! && orig=$(DESTDIR)$(localedir)/locale.alias \
! || orig=$(srcdir)/locale.alias; \
! temp=$(DESTDIR)$(localedir)/t-locale.alias; \
! dest=$(DESTDIR)$(localedir)/locale.alias; \
! sed -f ref-add.sed $$orig > $$temp; \
! $(INSTALL_DATA) $$temp $$dest; \
! rm -f $$temp; \
! else \
! : ; \
! fi
! install-data: all
! if test "$(PACKAGE)" = "gettext"; then \
! $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \
! $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \
! $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \
! dists="COPYING.LIB-2 COPYING.LIB-2.1 $(DISTFILES.common)"; \
! for file in $$dists; do \
! $(INSTALL_DATA) $(srcdir)/$$file \
! $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \
! dists="$(DISTFILES.generated)"; \
! for file in $$dists; do \
! if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
! $(INSTALL_DATA) $$dir/$$file \
! $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! dists="$(DISTFILES.obsolete)"; \
! for file in $$dists; do \
! rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! else \
! : ; \
! fi
!
! # Define this as empty until I found a useful application.
! installcheck:
!
uninstall:
! if test "$(PACKAGE)" = "gettext" \
! && test '@INTLOBJS@' = '$(GETTOBJS)'; then \
! rm -f $(DESTDIR)$(includedir)/libintl.h; \
! $(LIBTOOL) --mode=uninstall \
! rm -f $(DESTDIR)$(libdir)/libintl.$la; \
! else \
! : ; \
! fi
! if test '@USE_INCLUDED_LIBINTL@' = yes; then \
! if test -f $(DESTDIR)$(libdir)/charset.alias; then \
! temp=$(DESTDIR)$(libdir)/t-charset.alias; \
! dest=$(DESTDIR)$(libdir)/charset.alias; \
! sed -f ref-del.sed $$dest > $$temp; \
! if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
! rm -f $$dest; \
! else \
! $(INSTALL_DATA) $$temp $$dest; \
! fi; \
! rm -f $$temp; \
! fi; \
! if test -f $(DESTDIR)$(localedir)/locale.alias; then \
! temp=$(DESTDIR)$(localedir)/t-locale.alias; \
! dest=$(DESTDIR)$(localedir)/locale.alias; \
! sed -f ref-del.sed $$dest > $$temp; \
! if grep '^# Packages using this file: $$' $$temp > /dev/null; then \
! rm -f $$dest; \
! else \
! $(INSTALL_DATA) $$temp $$dest; \
! fi; \
! rm -f $$temp; \
! fi; \
! else \
! : ; \
! fi
! if test "$(PACKAGE)" = "gettext"; then \
! for file in VERSION ChangeLog COPYING.LIB-2 COPYING.LIB-2.1 $(DISTFILES.common) $(DISTFILES.generated); do \
! rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \
! done; \
! else \
! : ; \
! fi
!
! info dvi:
!
! $(OBJECTS): ../config.h libgnuintl.h
! bindtextdom.$lo finddomain.$lo loadmsgcat.$lo: gettextP.h gettext.h loadinfo.h
! dcgettext.$lo: gettextP.h gettext.h hash-string.h loadinfo.h
!
! tags: TAGS
!
! TAGS: $(HEADERS) $(SOURCES)
! here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES)
!
! id: ID
!
! ID: $(HEADERS) $(SOURCES)
! here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES)
!
!
! mostlyclean:
! rm -f *.a *.la *.o *.lo core core.*
! rm -f libintl.h charset.alias ref-add.sed ref-del.sed
! rm -f -r .libs _libs
!
! clean: mostlyclean
!
! distclean: clean
! rm -f Makefile ID TAGS
! if test "$(PACKAGE)" = gettext; then \
! rm -f ChangeLog.inst $(DISTFILES.normal); \
! else \
! : ; \
! fi
!
! maintainer-clean: distclean
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
!
!
! # GNU gettext needs not contain the file `VERSION' but contains some
! # other files which should not be distributed in other packages.
! distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
! dist distdir: Makefile
! if test "$(PACKAGE)" = gettext; then \
! additional="$(DISTFILES.gettext)"; \
! else \
! additional="$(DISTFILES.normal)"; \
! fi; \
! $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \
! for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \
! if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
! ln $$dir/$$file $(distdir) 2> /dev/null \
! || cp -p $$dir/$$file $(distdir); \
! done
!
! Makefile: Makefile.in ../config.status
! cd .. \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
! # Tell versions [3.59,3.63) of GNU make not to export all variables.
! # Otherwise a system limit (for SysV at least) may be exceeded.
! .NOEXPORT:
--- 1,5 ----
! all:
! install:
uninstall:
! clean:
! distclean:
|
|
From: <os...@us...> - 2002-08-24 20:54:19
|
Update of /cvsroot/lib/LIB/lib/poziomy/MSTO
In directory usw-pr-cvs1:/tmp/cvs-serv4325/lib/poziomy/MSTO
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/lib/poziomy/MSTO/Makefile.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Makefile.in 24 Aug 2002 14:16:53 -0000 1.11
--- Makefile.in 24 Aug 2002 20:54:16 -0000 1.12
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 32,42 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ../../..
--- 34,40 ----
***************
*** 46,55 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 44,57 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 60,63 ****
--- 62,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 65,72 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 81,167 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
noinst_DATA = miasto0 miasto1 miasto2 miejsca2b potworymiasto1 potworymiasto2 potworymiasto3 przedmiasto1 przedmiasto2 przedmiasto3 pulapki2b strefy1b trasy2b
CLEANFILES = *b potworymiasto* przedmiasto*
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../../../config2.h
! CONFIG_CLEAN_FILES =
! DATA = $(noinst_DATA)
!
! DIST_COMMON = Makefile.am Makefile.in
!
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
- TAR = tar
- GZIP_ENV = --best
- all: all-redirect
.SUFFIXES:
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/poziomy/MSTO/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
tags: TAGS
TAGS:
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
!
! subdir = lib/poziomy/MSTO
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu lib/poziomy/MSTO/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
- info-am:
- info: info-am
- dvi-am:
- dvi: dvi-am
check-am: all-am
check: check-am
! installcheck-am:
! installcheck: installcheck-am
! install-exec-am:
! install-exec: install-exec-am
! install-data-am:
! install-data: install-data-am
- install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
! uninstall-am:
uninstall: uninstall-am
- all-am: Makefile $(DATA)
- all-redirect: all-am
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs:
mostlyclean-generic:
--- 90,172 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
noinst_DATA = miasto0 miasto1 miasto2 miejsca2b potworymiasto1 potworymiasto2 potworymiasto3 przedmiasto1 przedmiasto2 przedmiasto3 pulapki2b strefy1b trasy2b
CLEANFILES = *b potworymiasto* przedmiasto*
+ subdir = lib/poziomy/MSTO
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! DIST_SOURCES =
! DATA = $(noinst_DATA)
! DIST_COMMON = Makefile.am Makefile.in
! all: all-am
.SUFFIXES:
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu lib/poziomy/MSTO/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
! uninstall-info-am:
tags: TAGS
TAGS:
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ../../..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
check-am: all-am
check: check-am
! all-am: Makefile $(DATA)
! installdirs:
install: install-am
! install-exec: install-exec-am
! install-data: install-data-am
uninstall: uninstall-am
+ install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-am
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 171,201 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-generic
! mostlyclean: mostlyclean-am
! clean-am: clean-generic mostlyclean-am
! clean: clean-am
! distclean-am: distclean-generic clean-am
! distclean: distclean-am
! maintainer-clean-am: maintainer-clean-generic distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
! .PHONY: tags distdir info-am info dvi-am dvi check check-am \
! installcheck-am installcheck install-exec-am install-exec \
! install-data-am install-data install-am install uninstall-am uninstall \
! all-redirect all-am all installdirs mostlyclean-generic \
! distclean-generic clean-generic maintainer-clean-generic clean \
! mostlyclean distclean maintainer-clean
miejsca2b trasy2b: $(top_builddir)/utils/convtras trasy2
--- 176,226 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-am
! clean-am: clean-generic mostlyclean-am
! distclean: distclean-am
! distclean-am: clean-am distclean-generic
! dvi: dvi-am
! dvi-am:
! info: info-am
!
! info-am:
!
! install-data-am:
!
! install-exec-am:
!
! install-info: install-info-am
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-am
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-am
!
! mostlyclean-am: mostlyclean-generic
!
! uninstall-am: uninstall-info-am
!
! .PHONY: all all-am check check-am clean clean-generic distclean \
! distclean-generic distdir dvi dvi-am info info-am install \
! install-am install-data install-data-am install-exec \
! install-exec-am install-info install-info-am install-man \
! install-strip installcheck installcheck-am installdirs \
! maintainer-clean maintainer-clean-generic mostlyclean \
! mostlyclean-generic uninstall uninstall-am uninstall-info-am
miejsca2b trasy2b: $(top_builddir)/utils/convtras trasy2
***************
*** 217,221 ****
strefy1b: $(top_builddir)/utils/convstr strefy1
$(top_builddir)/utils/convstr strefy1 strefy1b
-
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
--- 242,245 ----
|
|
From: <os...@us...> - 2002-08-24 20:54:19
|
Update of /cvsroot/lib/LIB/doc
In directory usw-pr-cvs1:/tmp/cvs-serv4325/doc
Modified Files:
Makefile.in
Log Message:
* locales dzia³aj± (mi przynajmniej ;) )
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/doc/Makefile.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Makefile.in 24 Aug 2002 14:16:53 -0000 1.14
--- Makefile.in 24 Aug 2002 20:54:16 -0000 1.15
***************
*** 1,5 ****
! # Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
! # Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
--- 1,7 ----
! # Makefile.in generated by automake 1.6.3 from Makefile.am.
! # @configure_input@
! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
! # Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
***************
*** 11,15 ****
# PARTICULAR PURPOSE.
!
SHELL = @SHELL@
--- 13,17 ----
# PARTICULAR PURPOSE.
! @SET_MAKE@
SHELL = @SHELL@
***************
*** 31,41 ****
includedir = @includedir@
oldincludedir = /usr/include
-
- DESTDIR =
-
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
-
top_builddir = ..
--- 33,39 ----
***************
*** 45,54 ****
AUTOHEADER = @AUTOHEADER@
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = @INSTALL_DATA@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
transform = @program_transform_name@
-
NORMAL_INSTALL = :
PRE_INSTALL = :
--- 43,56 ----
AUTOHEADER = @AUTOHEADER@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
! INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+ install_sh_SCRIPT = $(install_sh) -c
INSTALL_SCRIPT = @INSTALL_SCRIPT@
+ INSTALL_HEADER = $(INSTALL_DATA)
transform = @program_transform_name@
NORMAL_INSTALL = :
PRE_INSTALL = :
***************
*** 59,62 ****
--- 61,70 ----
host_alias = @host_alias@
host_triplet = @host@
+
+ EXEEXT = @EXEEXT@
+ OBJEXT = @OBJEXT@
+ PATH_SEPARATOR = @PATH_SEPARATOR@
+ datadir = $(prefix)/share/doc
+ AMTAR = @AMTAR@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
***************
*** 64,71 ****
--- 72,81 ----
CC = @CC@
DATADIRNAME = @DATADIRNAME@
+ DEPDIR = @DEPDIR@
GENCAT = @GENCAT@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
HAVE_LIB = @HAVE_LIB@
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
***************
*** 80,186 ****
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
- MAINT = @MAINT@
- MAKEINFO = @MAKEINFO@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
!
! datadir = $(prefix)/share/doc
pkgdata_DATA = keymap.cfg_adom keymap.cfg_nh postac.cfg main.cfg
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = ../config2.h
! CONFIG_CLEAN_FILES =
! DATA = $(pkgdata_DATA)
!
! DIST_COMMON = Makefile.am Makefile.in
!
! DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
- TAR = tar
- GZIP_ENV = --best
- all: all-redirect
.SUFFIXES:
! $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile
!
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
! cd $(top_builddir) \
! && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
!
!
install-pkgdataDATA: $(pkgdata_DATA)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
@list='$(pkgdata_DATA)'; for p in $$list; do \
! if test -f $(srcdir)/$$p; then \
! echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgdatadir)/$$p"; \
! $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgdatadir)/$$p; \
! else if test -f $$p; then \
! echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/$$p"; \
! $(INSTALL_DATA) $$p $(DESTDIR)$(pkgdatadir)/$$p; \
! fi; fi; \
done
uninstall-pkgdataDATA:
@$(NORMAL_UNINSTALL)
! list='$(pkgdata_DATA)'; for p in $$list; do \
! rm -f $(DESTDIR)$(pkgdatadir)/$$p; \
done
tags: TAGS
TAGS:
! distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
!
! subdir = doc
distdir: $(DISTFILES)
! here=`cd $(top_builddir) && pwd`; \
! top_distdir=`cd $(top_distdir) && pwd`; \
! distdir=`cd $(distdir) && pwd`; \
! cd $(top_srcdir) \
! && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu doc/Makefile
! @for file in $(DISTFILES); do \
! d=$(srcdir); \
if test -d $$d/$$file; then \
! cp -pr $$d/$$file $(distdir)/$$file; \
else \
test -f $(distdir)/$$file \
! || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
! || cp -p $$d/$$file $(distdir)/$$file || :; \
fi; \
done
- info-am:
- info: info-am
- dvi-am:
- dvi: dvi-am
check-am: all-am
check: check-am
! installcheck-am:
! installcheck: installcheck-am
! install-exec-am:
! install-exec: install-exec-am
! install-data-am: install-pkgdataDATA
! install-data: install-data-am
- install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
install: install-am
! uninstall-am: uninstall-pkgdataDATA
uninstall: uninstall-am
- all-am: Makefile $(DATA)
- all-redirect: all-am
- install-strip:
- $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
- installdirs:
- $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
mostlyclean-generic:
--- 90,190 ----
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
MKINSTALLDIRS = @MKINSTALLDIRS@
PACKAGE = @PACKAGE@
POSUB = @POSUB@
RANLIB = @RANLIB@
+ STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
! am__include = @am__include@
! am__quote = @am__quote@
! install_sh = @install_sh@
pkgdata_DATA = keymap.cfg_adom keymap.cfg_nh postac.cfg main.cfg
+ subdir = doc
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
! CONFIG_HEADER = $(top_builddir)/config2.h
! CONFIG_CLEAN_FILES =
! DIST_SOURCES =
! DATA = $(pkgdata_DATA)
! DIST_COMMON = Makefile.am Makefile.in
! all: all-am
.SUFFIXES:
! $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
! cd $(top_srcdir) && \
! $(AUTOMAKE) --gnu doc/Makefile
! Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
! cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
! uninstall-info-am:
! pkgdataDATA_INSTALL = $(INSTALL_DATA)
install-pkgdataDATA: $(pkgdata_DATA)
@$(NORMAL_INSTALL)
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
@list='$(pkgdata_DATA)'; for p in $$list; do \
! if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
! f="`echo $$p | sed -e 's|^.*/||'`"; \
! echo " $(pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f"; \
! $(pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f; \
done
uninstall-pkgdataDATA:
@$(NORMAL_UNINSTALL)
! @list='$(pkgdata_DATA)'; for p in $$list; do \
! f="`echo $$p | sed -e 's|^.*/||'`"; \
! echo " rm -f $(DESTDIR)$(pkgdatadir)/$$f"; \
! rm -f $(DESTDIR)$(pkgdatadir)/$$f; \
done
tags: TAGS
TAGS:
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
! top_distdir = ..
! distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
! @list='$(DISTFILES)'; for file in $$list; do \
! if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
! dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
! if test "$$dir" != "$$file" && test "$$dir" != "."; then \
! dir="/$$dir"; \
! $(mkinstalldirs) "$(distdir)$$dir"; \
! else \
! dir=''; \
! fi; \
if test -d $$d/$$file; then \
! if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
! cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
! fi; \
! cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
! || cp -p $$d/$$file $(distdir)/$$file \
! || exit 1; \
fi; \
done
check-am: all-am
check: check-am
! all-am: Makefile $(DATA)
! installdirs:
! $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
install: install-am
! install-exec: install-exec-am
! install-data: install-data-am
uninstall: uninstall-am
+ install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+ installcheck: installcheck-am
+ install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
+ INSTALL_STRIP_FLAG=-s \
+ `test -z '$(STRIP)' || \
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
***************
*** 189,220 ****
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
- -rm -f config.cache config.log stamp-h stamp-h[0-9]*
maintainer-clean-generic:
! mostlyclean-am: mostlyclean-generic
! mostlyclean: mostlyclean-am
! clean-am: clean-generic mostlyclean-am
! clean: clean-am
! distclean-am: distclean-generic clean-am
! distclean: distclean-am
! maintainer-clean-am: maintainer-clean-generic distclean-am
! @echo "This command is intended for maintainers to use;"
! @echo "it deletes files that may require special tools to rebuild."
maintainer-clean: maintainer-clean-am
! .PHONY: uninstall-pkgdataDATA install-pkgdataDATA tags distdir info-am \
! info dvi-am dvi check check-am installcheck-am installcheck \
! install-exec-am install-exec install-data-am install-data install-am \
! install uninstall-am uninstall all-redirect all-am all installdirs \
! mostlyclean-generic distclean-generic clean-generic \
! maintainer-clean-generic clean mostlyclean distclean maintainer-clean
# Tell versions [3.59,3.63) of GNU make to not export all variables.
--- 193,244 ----
distclean-generic:
-rm -f Makefile $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
! @echo "This command is intended for maintainers to use"
! @echo "it deletes files that may require special tools to rebuild."
! clean: clean-am
! clean-am: clean-generic mostlyclean-am
! distclean: distclean-am
! distclean-am: clean-am distclean-generic
! dvi: dvi-am
! dvi-am:
! info: info-am
!
! info-am:
!
! install-data-am: install-pkgdataDATA
!
! install-exec-am:
!
! install-info: install-info-am
!
! install-man:
!
! installcheck-am:
maintainer-clean: maintainer-clean-am
! maintainer-clean-am: distclean-am maintainer-clean-generic
!
! mostlyclean: mostlyclean-am
+ mostlyclean-am: mostlyclean-generic
+
+ uninstall-am: uninstall-info-am uninstall-pkgdataDATA
+
+ .PHONY: all all-am check check-am clean clean-generic distclean \
+ distclean-generic distdir dvi dvi-am info info-am install \
+ install-am install-data install-data-am install-exec \
+ install-exec-am install-info install-info-am install-man \
+ install-pkgdataDATA install-strip installcheck installcheck-am \
+ installdirs maintainer-clean maintainer-clean-generic \
+ mostlyclean mostlyclean-generic uninstall uninstall-am \
+ uninstall-info-am uninstall-pkgdataDATA
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
From: <os...@us...> - 2002-08-24 20:50:47
|
Update of /cvsroot/lib/LIB/m4 In directory usw-pr-cvs1:/tmp/cvs-serv3624/m4 Log Message: Directory /cvsroot/lib/LIB/m4 added to the repository |
|
From: <os...@us...> - 2002-08-24 18:51:11
|
Update of /cvsroot/lib/LIB/po In directory usw-pr-cvs1:/tmp/cvs-serv3680/po Modified Files: POTFILES.in de.po en.po fr.po Log Message: * zmniany dooko³a locales - locales na razie nie dzia³aj± Index: POTFILES.in =================================================================== RCS file: /cvsroot/lib/LIB/po/POTFILES.in,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** POTFILES.in 9 Jul 2001 09:54:36 -0000 1.4 --- POTFILES.in 24 Aug 2002 18:51:07 -0000 1.5 *************** *** 32,33 **** --- 32,38 ---- walka.c zadania.c + lib/ksiazki + lib/lista_potworow + lib/lista_przedmiotow + lib/preID + lib/zdarzenia Index: de.po =================================================================== RCS file: /cvsroot/lib/LIB/po/de.po,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** de.po 11 Jul 2002 00:27:04 -0000 1.1 --- de.po 24 Aug 2002 18:51:07 -0000 1.2 *************** *** 9,13 **** msgstr "" "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-07-10 20:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 9,13 ---- msgstr "" "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-08-24 18:54+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" [...2203 lines suppressed...] - #: walka.c:60 - msgid " atakuje " - msgstr "" - - #: walka.c:64 - msgid "mocno " - msgstr "" - - #: walka.c:68 - msgid "ciebie" - msgstr "" - - #: walka.c:74 - msgid "kogo¶" - msgstr "" - - #: walka.c:78 - msgid " w " - msgstr "" --- 16,17 ---- Index: en.po =================================================================== RCS file: /cvsroot/lib/LIB/po/en.po,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** en.po 11 Jul 2002 21:49:39 -0000 1.34 --- en.po 24 Aug 2002 18:51:07 -0000 1.35 *************** *** 4,2743 **** #: przedmioty.c:114 przedmioty.c:201 przedmioty.c:286 przedmioty.c:373 #: przedmioty.c:461 przedmioty.c:546 - #, fuzzy msgid "" msgstr "" "Project-Id-Version: 0,1\n" ! "POT-Creation-Date: 2002-07-10 17:38+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" [...4912 lines suppressed...] #, fuzzy ! #~ msgid "buty" ! #~ msgstr "Bloated" ! #, fuzzy ! #~ msgid "sanda" ! #~ msgstr "glass" ! #, fuzzy ! #~ msgid "sanday" ! #~ msgstr "leather" ! #, fuzzy ! #~ msgid "sandaw" ! #~ msgstr "leather" ! #, fuzzy ! #~ msgid "czerwony eliksir" ! #~ msgstr "dark elf" Index: fr.po =================================================================== RCS file: /cvsroot/lib/LIB/po/fr.po,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fr.po 11 Jul 2002 00:27:04 -0000 1.1 --- fr.po 24 Aug 2002 18:51:07 -0000 1.2 *************** *** 9,13 **** msgstr "" "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-07-10 20:59+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" --- 9,13 ---- msgstr "" "Project-Id-Version: PACKAGE VERSION\n" ! "POT-Creation-Date: 2002-08-24 18:54+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" [...2203 lines suppressed...] - #: walka.c:60 - msgid " atakuje " - msgstr "" - - #: walka.c:64 - msgid "mocno " - msgstr "" - - #: walka.c:68 - msgid "ciebie" - msgstr "" - - #: walka.c:74 - msgid "kogo¶" - msgstr "" - - #: walka.c:78 - msgid " w " - msgstr "" --- 16,17 ---- |
Update of /cvsroot/lib/LIB
In directory usw-pr-cvs1:/tmp/cvs-serv3680
Modified Files:
ChangeLog LIB.c configure configure.in ostatnia_zmiana
parser.c postac.c przedmioty.c swiat.c
Log Message:
* zmniany dooko³a locales - locales na razie nie dzia³aj±
Index: ChangeLog
===================================================================
RCS file: /cvsroot/lib/LIB/ChangeLog,v
retrieving revision 1.303
retrieving revision 1.304
diff -C2 -d -r1.303 -r1.304
*** ChangeLog 24 Aug 2002 15:22:52 -0000 1.303
--- ChangeLog 24 Aug 2002 18:51:06 -0000 1.304
***************
*** 1,2 ****
--- 1,5 ----
+ 2002/08/24 20:50:28 przewdnik
+ * zmniany dooko³a locales - locales na razie nie dzia³aj±
+
2002/08/24 17:22:24 przewdnik
* zmniejszone rozmiary bufora w parser.c
Index: LIB.c
===================================================================
RCS file: /cvsroot/lib/LIB/LIB.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** LIB.c 15 Jun 2002 16:18:22 -0000 1.46
--- LIB.c 24 Aug 2002 18:51:06 -0000 1.47
***************
*** 239,243 ****
strcat(tmp2, _(" \nNaci¶nij co¶."));
dodaj_napis(tmp2); */
! dodaj_napis(_("Nie ¿yjesz... \nNaci¶nij klawisz."));
wyswietl_opis_gracza(&Poziom);
Poziom.Istoty.aktualny = Gracz;
--- 239,243 ----
strcat(tmp2, _(" \nNaci¶nij co¶."));
dodaj_napis(tmp2); */
! dodaj_napis(_("Nie ¿yjesz... \nNaci¶nij dowolny klawisz."));
wyswietl_opis_gracza(&Poziom);
Poziom.Istoty.aktualny = Gracz;
Index: configure
===================================================================
RCS file: /cvsroot/lib/LIB/configure,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -d -r1.39 -r1.40
*** configure 24 Aug 2002 14:16:53 -0000 1.39
--- configure 24 Aug 2002 18:51:06 -0000 1.40
***************
*** 7810,7814 ****
echo "${ECHO_T}$enable_debug" >&6
if test "$enable_debug" = "yes"; then
! CFLAGS="$CFLAGS -Wall -ggdb"
cat >>confdefs.h <<\_ACEOF
#define DEBUG 1
--- 7810,7814 ----
echo "${ECHO_T}$enable_debug" >&6
if test "$enable_debug" = "yes"; then
! CFLAGS="-Wall -ggdb"
cat >>confdefs.h <<\_ACEOF
#define DEBUG 1
Index: configure.in
===================================================================
RCS file: /cvsroot/lib/LIB/configure.in,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** configure.in 24 Aug 2002 14:16:53 -0000 1.28
--- configure.in 24 Aug 2002 18:51:06 -0000 1.29
***************
*** 50,54 ****
AC_MSG_RESULT($enable_debug)
if test "$enable_debug" = "yes"; then
! CFLAGS="$CFLAGS -Wall -ggdb"
AC_DEFINE(DEBUG)
else
--- 50,54 ----
AC_MSG_RESULT($enable_debug)
if test "$enable_debug" = "yes"; then
! CFLAGS="-Wall -ggdb"
AC_DEFINE(DEBUG)
else
Index: ostatnia_zmiana
===================================================================
RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v
retrieving revision 1.192
retrieving revision 1.193
diff -C2 -d -r1.192 -r1.193
*** ostatnia_zmiana 24 Aug 2002 15:22:53 -0000 1.192
--- ostatnia_zmiana 24 Aug 2002 18:51:06 -0000 1.193
***************
*** 1 ****
! * zmniejszone rozmiary bufora w parser.c
--- 1 ----
! * zmniany dooko³a locales - locales na razie nie dzia³aj±
Index: parser.c
===================================================================
RCS file: /cvsroot/lib/LIB/parser.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** parser.c 24 Aug 2002 15:22:53 -0000 1.27
--- parser.c 24 Aug 2002 18:51:06 -0000 1.28
***************
*** 23,27 ****
char *zamien(char *gdzie, char *co, char *na_co)
{
! char buf[1000];
int l1, l2, l3, l4;
strcpy(buf, "");
--- 23,27 ----
char *zamien(char *gdzie, char *co, char *na_co)
{
! char buf[9000];
int l1, l2, l3, l4;
strcpy(buf, "");
***************
*** 50,54 ****
char *wstaw_define(char *gdzie, int spodziewana_liczba)
{
! char buf[1000];
switch (spodziewana_liczba) {
case SP_KOLOR:
--- 50,54 ----
char *wstaw_define(char *gdzie, int spodziewana_liczba)
{
! char buf[9000];
switch (spodziewana_liczba) {
case SP_KOLOR:
***************
*** 478,482 ****
char *wytnij_komentarze(char *z_czego)
{
! char wynik[1000];
int cudzysl = 0, pojedyn = 0, eskejp = 0, l = 0, koniec = 0;
while (!koniec) {
--- 478,482 ----
char *wytnij_komentarze(char *z_czego)
{
! char wynik[9000];
int cudzysl = 0, pojedyn = 0, eskejp = 0, l = 0, koniec = 0;
while (!koniec) {
***************
*** 520,524 ****
int ustaw_kawalek(char *poczatek, char *koniec)
{
! char buforek[1001];
int ok = 0;
#ifdef DEBUG_PARSER
--- 520,524 ----
int ustaw_kawalek(char *poczatek, char *koniec)
{
! char buforek[9001];
int ok = 0;
#ifdef DEBUG_PARSER
***************
*** 531,535 ****
}
offset_pocz_kawalka = ftell(in);
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, poczatek) != NULL) {
--- 531,535 ----
}
offset_pocz_kawalka = ftell(in);
! fgets(buforek, 9000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, poczatek) != NULL) {
***************
*** 551,555 ****
while (!ok) {
offset_konca_kawalka = ftell(in);
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, koniec) != NULL) {
--- 551,555 ----
while (!ok) {
offset_konca_kawalka = ftell(in);
! fgets(buforek, 9000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, koniec) != NULL) {
***************
*** 585,594 ****
int parser_liczba(char *nazwa_pola, int numer_pola, int domyslna, int typ)
{
! char buforek[1001];
int wynik = domyslna;
#ifdef DEBUG_PARSER
int udalo_sie = 0;
#endif
! /* if (!(buforek = (char *) my_malloc (100001)))
{
fprintf(stderr, "Zabrak³o pamiêci, parser_liczba()... ");
--- 585,594 ----
int parser_liczba(char *nazwa_pola, int numer_pola, int domyslna, int typ)
{
! char buforek[9001];
int wynik = domyslna;
#ifdef DEBUG_PARSER
int udalo_sie = 0;
#endif
! /* if (!(buforek = (char *) my_malloc (900001)))
{
fprintf(stderr, "Zabrak³o pamiêci, parser_liczba()... ");
***************
*** 600,604 ****
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
strcpy(buforek, wstaw_define(buforek, typ));
--- 600,604 ----
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 9000, in);
strcpy(buforek, wytnij_komentarze(buforek));
strcpy(buforek, wstaw_define(buforek, typ));
***************
*** 648,657 ****
char parser_znak(char *nazwa_pola, int numer_pola, char domyslna)
{
! char buforek[1001];
char wynik = domyslna;
#ifdef DEBUG_PARSER
int udalo_sie = 0;
#endif
! /* if (!(buforek = (char *) my_malloc (100001)))
{
fprintf(stderr, "Zabrak³o pamiêci, parser_znak()... ");
--- 648,657 ----
char parser_znak(char *nazwa_pola, int numer_pola, char domyslna)
{
! char buforek[9001];
char wynik = domyslna;
#ifdef DEBUG_PARSER
int udalo_sie = 0;
#endif
! /* if (!(buforek = (char *) my_malloc (900001)))
{
fprintf(stderr, "Zabrak³o pamiêci, parser_znak()... ");
***************
*** 663,667 ****
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
--- 663,667 ----
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 9000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
***************
*** 720,730 ****
char *domyslna)
{
! char buforek[1001];
! char wynik[1000];
#ifdef DEBUG_PARSER
int udalo_sie = 0;
#endif
strcpy(wynik, domyslna);
! /* if (!(buforek = (char *) my_malloc (100001)))
{
fprintf(stderr, "Zabrak³o pamiêci, parser_string()... ");
--- 720,730 ----
char *domyslna)
{
! char buforek[9001];
! char wynik[9000];
#ifdef DEBUG_PARSER
int udalo_sie = 0;
#endif
strcpy(wynik, domyslna);
! /* if (!(buforek = (char *) my_malloc (900001)))
{
fprintf(stderr, "Zabrak³o pamiêci, parser_string()... ");
***************
*** 736,740 ****
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
--- 736,740 ----
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 9000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
Index: postac.c
===================================================================
RCS file: /cvsroot/lib/LIB/postac.c,v
retrieving revision 1.151
retrieving revision 1.152
diff -C2 -d -r1.151 -r1.152
*** postac.c 10 Jul 2002 08:31:02 -0000 1.151
--- postac.c 24 Aug 2002 18:51:06 -0000 1.152
***************
*** 1173,1178 ****
Istoty->aktualny->typ = potworyID.ID[ID].typ;
Istoty->aktualny->zasieg_widzenia = potworyID.ID[ID].zasieg_widzenia;
! strcpy(Istoty->aktualny->nazwa, potworyID.ID[ID].nazwa);
! strcpy(Istoty->aktualny->nazwa_dop, potworyID.ID[ID].nazwa_dop);
for (tmp = 0; tmp < ILOSC_UMIEJETNOSCI; tmp++) {
Istoty->aktualny->umiejetnosci[tmp] = 0;
--- 1173,1178 ----
Istoty->aktualny->typ = potworyID.ID[ID].typ;
Istoty->aktualny->zasieg_widzenia = potworyID.ID[ID].zasieg_widzenia;
! strcpy(Istoty->aktualny->nazwa, _(potworyID.ID[ID].nazwa));
! strcpy(Istoty->aktualny->nazwa_dop, _(potworyID.ID[ID].nazwa_dop));
for (tmp = 0; tmp < ILOSC_UMIEJETNOSCI; tmp++) {
Istoty->aktualny->umiejetnosci[tmp] = 0;
Index: przedmioty.c
===================================================================
RCS file: /cvsroot/lib/LIB/przedmioty.c,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** przedmioty.c 12 Feb 2002 21:36:09 -0000 1.74
--- przedmioty.c 24 Aug 2002 18:51:07 -0000 1.75
***************
*** 112,116 ****
break;
case MAT_JEDZENIE:
! strcpy(buf, _(""));
break;
default:
--- 112,116 ----
break;
case MAT_JEDZENIE:
! strcpy(buf, "");
break;
default:
***************
*** 199,203 ****
break;
case MAT_JEDZENIE:
! strcpy(buf, _(""));
break;
default:
--- 199,203 ----
break;
case MAT_JEDZENIE:
! strcpy(buf, "");
break;
default:
***************
*** 284,288 ****
break;
case MAT_JEDZENIE:
! strcpy(buf, _(""));
break;
default:
--- 284,288 ----
break;
case MAT_JEDZENIE:
! strcpy(buf, "");
break;
default:
***************
*** 371,375 ****
break;
case MAT_JEDZENIE:
! strcpy(buf, _(""));
break;
default:
--- 371,375 ----
break;
case MAT_JEDZENIE:
! strcpy(buf, "");
break;
default:
***************
*** 459,463 ****
break;
case MAT_JEDZENIE:
! strcpy(buf, _(""));
break;
default:
--- 459,463 ----
break;
case MAT_JEDZENIE:
! strcpy(buf, "");
break;
default:
***************
*** 544,548 ****
break;
case MAT_JEDZENIE:
! strcpy(buf, _(""));
break;
default:
--- 544,548 ----
break;
case MAT_JEDZENIE:
! strcpy(buf, "");
break;
default:
***************
*** 581,591 ****
switch (liczba) {
case LCZ_POJEDYNCZA:
! strcat(buf, przedmiotyID.ID[P->ID].nazwa[przypadek]);
break;
case LCZ_MNOGA:
! strcat(buf, przedmiotyID.ID[P->ID].mnoga);
break;
case LCZ_MNOGA_II:
! strcat(buf, przedmiotyID.ID[P->ID].d_mnoga);
break;
}
--- 581,591 ----
switch (liczba) {
case LCZ_POJEDYNCZA:
! strcat(buf, _(przedmiotyID.ID[P->ID].nazwa[przypadek]));
break;
case LCZ_MNOGA:
! strcat(buf, _(przedmiotyID.ID[P->ID].mnoga));
break;
case LCZ_MNOGA_II:
! strcat(buf, _(przedmiotyID.ID[P->ID].d_mnoga));
break;
}
***************
*** 593,603 ****
switch (liczba) {
case LCZ_POJEDYNCZA:
! strcat(buf, preID[P->ID].nazwa[przypadek]);
break;
case LCZ_MNOGA:
! strcat(buf, preID[P->ID].mnoga);
break;
case LCZ_MNOGA_II:
! strcat(buf, preID[P->ID].d_mnoga);
break;
}
--- 593,603 ----
switch (liczba) {
case LCZ_POJEDYNCZA:
! strcat(buf, _(preID[P->ID].nazwa[przypadek]));
break;
case LCZ_MNOGA:
! strcat(buf, _(preID[P->ID].mnoga));
break;
case LCZ_MNOGA_II:
! strcat(buf, _(preID[P->ID].d_mnoga));
break;
}
Index: swiat.c
===================================================================
RCS file: /cvsroot/lib/LIB/swiat.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** swiat.c 30 Oct 2001 17:01:23 -0000 1.28
--- swiat.c 24 Aug 2002 18:51:07 -0000 1.29
***************
*** 76,80 ****
switch (zdarzenie[i].typ) {
case 0:
! dodaj_napis(zdarzenie[i].komunikat);
if (zdarzenie[i].jednorazowe)
zdarzenie[i].aktualne = 0;
--- 76,80 ----
switch (zdarzenie[i].typ) {
case 0:
! dodaj_napis(_(zdarzenie[i].komunikat));
if (zdarzenie[i].jednorazowe)
zdarzenie[i].aktualne = 0;
***************
*** 83,87 ****
{
int j;
! dodaj_napis(zdarzenie[i].komunikat);
zadanie.nr_potwora = zdarzenie[i].nr_potwora;
j = dodaj_zadanie(&zadanie,
--- 83,87 ----
{
int j;
! dodaj_napis(_(zdarzenie[i].komunikat));
zadanie.nr_potwora = zdarzenie[i].nr_potwora;
j = dodaj_zadanie(&zadanie,
***************
*** 104,108 ****
zdarzenie[i].wykonawca = Gracz;
} */
! dodaj_napis(zdarzenie[i].komunikat);
dodaj_ladnie( /*zdarzenie[i].wykonawca */ Gracz->x,
/*zdarzenie[i].wykonawca */ Gracz->y,
--- 104,108 ----
zdarzenie[i].wykonawca = Gracz;
} */
! dodaj_napis(_(zdarzenie[i].komunikat));
dodaj_ladnie( /*zdarzenie[i].wykonawca */ Gracz->x,
/*zdarzenie[i].wykonawca */ Gracz->y,
|
|
From: <os...@us...> - 2002-08-24 15:22:56
|
Update of /cvsroot/lib/LIB
In directory usw-pr-cvs1:/tmp/cvs-serv3911
Modified Files:
ChangeLog ostatnia_zmiana parser.c
Log Message:
* zmniejszone rozmiary bufora w parser.c
Index: ChangeLog
===================================================================
RCS file: /cvsroot/lib/LIB/ChangeLog,v
retrieving revision 1.302
retrieving revision 1.303
diff -C2 -d -r1.302 -r1.303
*** ChangeLog 24 Aug 2002 15:08:28 -0000 1.302
--- ChangeLog 24 Aug 2002 15:22:52 -0000 1.303
***************
*** 1,2 ****
--- 1,5 ----
+ 2002/08/24 17:22:24 przewdnik
+ * zmniejszone rozmiary bufora w parser.c
+
2002/08/24 17:04:05 przewdnik
* zmniejszony rozmiar bufora w wypisz_klawisze()
Index: ostatnia_zmiana
===================================================================
RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v
retrieving revision 1.191
retrieving revision 1.192
diff -C2 -d -r1.191 -r1.192
*** ostatnia_zmiana 24 Aug 2002 15:08:32 -0000 1.191
--- ostatnia_zmiana 24 Aug 2002 15:22:53 -0000 1.192
***************
*** 1 ****
! * zmniejszony rozmiar bufora w wypisz_klawisze()
--- 1 ----
! * zmniejszone rozmiary bufora w parser.c
Index: parser.c
===================================================================
RCS file: /cvsroot/lib/LIB/parser.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** parser.c 13 Feb 2002 21:16:35 -0000 1.26
--- parser.c 24 Aug 2002 15:22:53 -0000 1.27
***************
*** 478,482 ****
char *wytnij_komentarze(char *z_czego)
{
! char wynik[100000];
int cudzysl = 0, pojedyn = 0, eskejp = 0, l = 0, koniec = 0;
while (!koniec) {
--- 478,482 ----
char *wytnij_komentarze(char *z_czego)
{
! char wynik[1000];
int cudzysl = 0, pojedyn = 0, eskejp = 0, l = 0, koniec = 0;
while (!koniec) {
***************
*** 520,524 ****
int ustaw_kawalek(char *poczatek, char *koniec)
{
! char buforek[100001];
int ok = 0;
#ifdef DEBUG_PARSER
--- 520,524 ----
int ustaw_kawalek(char *poczatek, char *koniec)
{
! char buforek[1001];
int ok = 0;
#ifdef DEBUG_PARSER
***************
*** 531,535 ****
}
offset_pocz_kawalka = ftell(in);
! fgets(buforek, 100000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, poczatek) != NULL) {
--- 531,535 ----
}
offset_pocz_kawalka = ftell(in);
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, poczatek) != NULL) {
***************
*** 551,555 ****
while (!ok) {
offset_konca_kawalka = ftell(in);
! fgets(buforek, 100000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, koniec) != NULL) {
--- 551,555 ----
while (!ok) {
offset_konca_kawalka = ftell(in);
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, koniec) != NULL) {
***************
*** 585,589 ****
int parser_liczba(char *nazwa_pola, int numer_pola, int domyslna, int typ)
{
! char buforek[100001];
int wynik = domyslna;
#ifdef DEBUG_PARSER
--- 585,589 ----
int parser_liczba(char *nazwa_pola, int numer_pola, int domyslna, int typ)
{
! char buforek[1001];
int wynik = domyslna;
#ifdef DEBUG_PARSER
***************
*** 600,604 ****
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 100000, in);
strcpy(buforek, wytnij_komentarze(buforek));
strcpy(buforek, wstaw_define(buforek, typ));
--- 600,604 ----
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
strcpy(buforek, wstaw_define(buforek, typ));
***************
*** 648,652 ****
char parser_znak(char *nazwa_pola, int numer_pola, char domyslna)
{
! char buforek[100001];
char wynik = domyslna;
#ifdef DEBUG_PARSER
--- 648,652 ----
char parser_znak(char *nazwa_pola, int numer_pola, char domyslna)
{
! char buforek[1001];
char wynik = domyslna;
#ifdef DEBUG_PARSER
***************
*** 663,667 ****
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 100000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
--- 663,667 ----
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
***************
*** 720,725 ****
char *domyslna)
{
! char buforek[100001];
! char wynik[100000];
#ifdef DEBUG_PARSER
int udalo_sie = 0;
--- 720,725 ----
char *domyslna)
{
! char buforek[1001];
! char wynik[1000];
#ifdef DEBUG_PARSER
int udalo_sie = 0;
***************
*** 736,740 ****
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 100000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
--- 736,740 ----
#endif
while (offset_konca_kawalka >= ftell(in)) {
! fgets(buforek, 1000, in);
strcpy(buforek, wytnij_komentarze(buforek));
if (strstr(buforek, nazwa_pola) != NULL) {
|
|
From: <os...@us...> - 2002-08-24 15:08:42
|
Update of /cvsroot/lib/LIB
In directory usw-pr-cvs1:/tmp/cvs-serv32554
Modified Files:
ChangeLog ekran.c ostatnia_zmiana
Log Message:
* zmniejszony rozmiar bufora w wypisz_klawisze()
Index: ChangeLog
===================================================================
RCS file: /cvsroot/lib/LIB/ChangeLog,v
retrieving revision 1.301
retrieving revision 1.302
diff -C2 -d -r1.301 -r1.302
*** ChangeLog 24 Aug 2002 14:16:53 -0000 1.301
--- ChangeLog 24 Aug 2002 15:08:28 -0000 1.302
***************
*** 1,2 ****
--- 1,5 ----
+ 2002/08/24 17:04:05 przewdnik
+ * zmniejszony rozmiar bufora w wypisz_klawisze()
+
2002/08/24 16:16:29 przewdnik
* zmiany w autotoolsach
Index: ekran.c
===================================================================
RCS file: /cvsroot/lib/LIB/ekran.c,v
retrieving revision 1.73
retrieving revision 1.74
diff -C2 -d -r1.73 -r1.74
*** ekran.c 15 Jun 2002 16:18:22 -0000 1.73
--- ekran.c 24 Aug 2002 15:08:30 -0000 1.74
***************
*** 38,42 ****
void wypisz_klawisze()
{
! char buforzysko[50000];
char tab[5000];
buforzysko[0]='\0';
--- 38,42 ----
void wypisz_klawisze()
{
! char buforzysko[31*100];
char tab[5000];
buforzysko[0]='\0';
Index: ostatnia_zmiana
===================================================================
RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v
retrieving revision 1.190
retrieving revision 1.191
diff -C2 -d -r1.190 -r1.191
*** ostatnia_zmiana 24 Aug 2002 14:16:53 -0000 1.190
--- ostatnia_zmiana 24 Aug 2002 15:08:32 -0000 1.191
***************
*** 1,3 ****
! * zmiany w autotoolsach
! * zmiana nazwy binarki na tymczasow± :)
! * otwarty konkurs na now± nazwê
--- 1 ----
! * zmniejszony rozmiar bufora w wypisz_klawisze()
|
Update of /cvsroot/lib/LIB
In directory usw-pr-cvs1:/tmp/cvs-serv21285
Modified Files:
ChangeLog Makefile.am Makefile.in acconfig.h config2.h.in
configure configure.in ostatnia_zmiana
Log Message:
* zmiany w autotoolsach
* zmiana nazwy binarki na tymczasow± :)
* otwarty konkurs na now± nazwê
Index: ChangeLog
===================================================================
RCS file: /cvsroot/lib/LIB/ChangeLog,v
retrieving revision 1.300
retrieving revision 1.301
diff -C2 -d -r1.300 -r1.301
*** ChangeLog 23 Aug 2002 22:54:20 -0000 1.300
--- ChangeLog 24 Aug 2002 14:16:53 -0000 1.301
***************
*** 1,2 ****
--- 1,7 ----
+ 2002/08/24 16:16:29 przewdnik
+ * zmiany w autotoolsach
+ * zmiana nazwy binarki na tymczasow± :)
+ * otwarty konkurs na now± nazwê
+
2002/08/24 0:54:01 przewdnik
* Nie wszystkie umiejêtno¶ci s± ograniczone przez æwiczenie teoretyczne
Index: Makefile.am
===================================================================
RCS file: /cvsroot/lib/LIB/Makefile.am,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** Makefile.am 30 Sep 2001 13:57:42 -0000 1.29
--- Makefile.am 24 Aug 2002 14:16:53 -0000 1.30
***************
*** 4,9 ****
CLEANFILES = lib.data build-stamp
! bin_PROGRAMS = LIB
! LIB_SOURCES = czas.c ekran.c io.c keymap.c ksiazki.c LIB.c parser.c postac.c potwor.c poziom.c przedmioty.c pulapki.c punkty.c rozne.c schematekwipunku.c strefy.c swiat.c trasy.c umiejetnosci.c walka.c zadania.c
pkgdata_DATA = lib.data
--- 4,9 ----
CLEANFILES = lib.data build-stamp
! bin_PROGRAMS = tymczasowanazwaliba
! tymczasowanazwaliba_SOURCES = czas.c ekran.c io.c keymap.c ksiazki.c LIB.c parser.c postac.c potwor.c poziom.c przedmioty.c pulapki.c punkty.c rozne.c schematekwipunku.c strefy.c swiat.c trasy.c umiejetnosci.c walka.c zadania.c
pkgdata_DATA = lib.data
Index: Makefile.in
===================================================================
RCS file: /cvsroot/lib/LIB/Makefile.in,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** Makefile.in 23 Aug 2002 22:54:20 -0000 1.38
--- Makefile.in 24 Aug 2002 14:16:53 -0000 1.39
***************
*** 55,64 ****
PRE_UNINSTALL = :
POST_UNINSTALL = :
- build_alias = @build_alias@
- build_triplet = @build@
host_alias = @host_alias@
host_triplet = @host@
- target_alias = @target_alias@
- target_triplet = @target@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
--- 55,60 ----
***************
*** 97,102 ****
CLEANFILES = lib.data build-stamp
! bin_PROGRAMS = LIB
! LIB_SOURCES = czas.c ekran.c io.c keymap.c ksiazki.c LIB.c parser.c postac.c potwor.c poziom.c przedmioty.c pulapki.c punkty.c rozne.c schematekwipunku.c strefy.c swiat.c trasy.c umiejetnosci.c walka.c zadania.c
pkgdata_DATA = lib.data
--- 93,98 ----
CLEANFILES = lib.data build-stamp
! bin_PROGRAMS = tymczasowanazwaliba
! tymczasowanazwaliba_SOURCES = czas.c ekran.c io.c keymap.c ksiazki.c LIB.c parser.c postac.c potwor.c poziom.c przedmioty.c pulapki.c punkty.c rozne.c schematekwipunku.c strefy.c swiat.c trasy.c umiejetnosci.c walka.c zadania.c
pkgdata_DATA = lib.data
***************
*** 113,123 ****
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
! LIB_OBJECTS = czas.o ekran.o io.o keymap.o ksiazki.o LIB.o parser.o \
! postac.o potwor.o poziom.o przedmioty.o pulapki.o punkty.o rozne.o \
! schematekwipunku.o strefy.o swiat.o trasy.o umiejetnosci.o walka.o \
! zadania.o
! LIB_LDADD = $(LDADD)
! LIB_DEPENDENCIES =
! LIB_LDFLAGS =
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--- 109,119 ----
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
! tymczasowanazwaliba_OBJECTS = czas.o ekran.o io.o keymap.o ksiazki.o \
! LIB.o parser.o postac.o potwor.o poziom.o przedmioty.o pulapki.o \
! punkty.o rozne.o schematekwipunku.o strefy.o swiat.o trasy.o \
! umiejetnosci.o walka.o zadania.o
! tymczasowanazwaliba_LDADD = $(LDADD)
! tymczasowanazwaliba_DEPENDENCIES =
! tymczasowanazwaliba_LDFLAGS =
CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
***************
*** 142,147 ****
.deps/swiat.P .deps/trasy.P .deps/umiejetnosci.P .deps/walka.P \
.deps/zadania.P
! SOURCES = $(LIB_SOURCES)
! OBJECTS = $(LIB_OBJECTS)
all: all-redirect
--- 138,143 ----
.deps/swiat.P .deps/trasy.P .deps/umiejetnosci.P .deps/walka.P \
.deps/zadania.P
! SOURCES = $(tymczasowanazwaliba_SOURCES)
! OBJECTS = $(tymczasowanazwaliba_OBJECTS)
all: all-redirect
***************
*** 231,234 ****
--- 227,234 ----
maintainer-clean-compile:
+
+ tymczasowanazwaliba: $(tymczasowanazwaliba_OBJECTS) $(tymczasowanazwaliba_DEPENDENCIES)
+ @rm -f tymczasowanazwaliba
+ $(LINK) $(tymczasowanazwaliba_LDFLAGS) $(tymczasowanazwaliba_OBJECTS) $(tymczasowanazwaliba_LDADD) $(LIBS)
install-pkgdataDATA: $(pkgdata_DATA)
Index: acconfig.h
===================================================================
RCS file: /cvsroot/lib/LIB/acconfig.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** acconfig.h 6 Nov 2001 20:22:32 -0000 1.5
--- acconfig.h 24 Aug 2002 14:16:53 -0000 1.6
***************
*** 1,8 ****
- #undef LINUX
- #undef CYGWIN
- #undef _DJGPP
- #undef DEBUG
- #undef DEBUG_PARSER
- #undef MAGIC_TAXIS
#undef ENABLE_NLS
#undef HAVE_CATGETS
--- 1,2 ----
***************
*** 13,17 ****
#undef ALL_LINGUAS
/* Zdefiniowane, gdy kompilujemy z -O */
- #undef OPT
#undef PREFIX
#undef PACKAGE
--- 7,10 ----
Index: config2.h.in
===================================================================
RCS file: /cvsroot/lib/LIB/config2.h.in,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** config2.h.in 10 Jul 2002 06:15:34 -0000 1.11
--- config2.h.in 24 Aug 2002 14:16:53 -0000 1.12
***************
*** 1,50 ****
! /* config2.h.in. Generated automatically from configure.in by autoheader 2.13. */
!
! /* Define if using alloca.c. */
! #undef C_ALLOCA
!
! /* Define to empty if the keyword does not work. */
! #undef const
!
! /* Define to one of _getb67, GETB67, getb67 for Cray-2 and Cray-YMP systems.
! This function is required for alloca.c support on those systems. */
! #undef CRAY_STACKSEG_END
!
! /* Define if you have alloca, as a function or macro. */
! #undef HAVE_ALLOCA
!
! /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
! #undef HAVE_ALLOCA_H
!
! /* Define if you have a working `mmap' system call. */
! #undef HAVE_MMAP
!
! /* Define as __inline if that's what the C compiler calls it. */
! #undef inline
!
! /* Define to `long' if <sys/types.h> doesn't define. */
! #undef off_t
!
! /* Define to `unsigned' if <sys/types.h> doesn't define. */
! #undef size_t
!
! /* If using the C implementation of alloca, define if you know the
! direction of stack growth for your system; otherwise it will be
! automatically deduced at run-time.
! STACK_DIRECTION > 0 => grows toward higher addresses
! STACK_DIRECTION < 0 => grows toward lower addresses
! STACK_DIRECTION = 0 => direction of growth unknown
! */
! #undef STACK_DIRECTION
!
! /* Define if you have the ANSI C header files. */
! #undef STDC_HEADERS
!
! #undef LINUX
! #undef CYGWIN
! #undef _DJGPP
! #undef DEBUG
! #undef DEBUG_PARSER
! #undef MAGIC_TAXIS
#undef ENABLE_NLS
#undef HAVE_CATGETS
--- 1,3 ----
! /* config2.h.in. Generated from configure.in by autoheader. */
#undef ENABLE_NLS
#undef HAVE_CATGETS
***************
*** 55,218 ****
#undef ALL_LINGUAS
/* Zdefiniowane, gdy kompilujemy z -O */
- #undef OPT
#undef PREFIX
#undef PACKAGE
#undef VERSION
! /* Define if you have the __argz_count function. */
! #undef HAVE___ARGZ_COUNT
! /* Define if you have the __argz_next function. */
! #undef HAVE___ARGZ_NEXT
! /* Define if you have the __argz_stringify function. */
! #undef HAVE___ARGZ_STRINGIFY
! /* Define if you have the dcgettext function. */
#undef HAVE_DCGETTEXT
! /* Define if you have the feof_unlocked function. */
#undef HAVE_FEOF_UNLOCKED
! /* Define if you have the fgets_unlocked function. */
#undef HAVE_FGETS_UNLOCKED
! /* Define if you have the getcwd function. */
#undef HAVE_GETCWD
! /* Define if you have the getegid function. */
#undef HAVE_GETEGID
! /* Define if you have the geteuid function. */
#undef HAVE_GETEUID
! /* Define if you have the getgid function. */
#undef HAVE_GETGID
! /* Define if you have the getpagesize function. */
#undef HAVE_GETPAGESIZE
! /* Define if you have the getuid function. */
#undef HAVE_GETUID
! /* Define if you have the getwd function. */
#undef HAVE_GETWD
! /* Define if you have the mempcpy function. */
#undef HAVE_MEMPCPY
! /* Define if you have the mkdir function. */
#undef HAVE_MKDIR
! /* Define if you have the munmap function. */
#undef HAVE_MUNMAP
! /* Define if you have the putenv function. */
#undef HAVE_PUTENV
! /* Define if you have the setenv function. */
#undef HAVE_SETENV
! /* Define if you have the setlocale function. */
#undef HAVE_SETLOCALE
! /* Define if you have the stpcpy function. */
#undef HAVE_STPCPY
! /* Define if you have the strcasecmp function. */
#undef HAVE_STRCASECMP
! /* Define if you have the strchr function. */
! #undef HAVE_STRCHR
!
! /* Define if you have the strcspn function. */
#undef HAVE_STRCSPN
! /* Define if you have the strdup function. */
#undef HAVE_STRDUP
! /* Define if you have the strstr function. */
#undef HAVE_STRSTR
! /* Define if you have the strtoul function. */
#undef HAVE_STRTOUL
! /* Define if you have the tsearch function. */
#undef HAVE_TSEARCH
! /* Define if you have the <argz.h> header file. */
! #undef HAVE_ARGZ_H
! /* Define if you have the <fcntl.h> header file. */
! #undef HAVE_FCNTL_H
! /* Define if you have the <limits.h> header file. */
! #undef HAVE_LIMITS_H
! /* Define if you have the <locale.h> header file. */
! #undef HAVE_LOCALE_H
! /* Define if you have the <malloc.h> header file. */
! #undef HAVE_MALLOC_H
! /* Define if you have the <ncurses.h> header file. */
! #undef HAVE_NCURSES_H
! /* Define if you have the <nl_types.h> header file. */
! #undef HAVE_NL_TYPES_H
! /* Define if you have the <stddef.h> header file. */
! #undef HAVE_STDDEF_H
! /* Define if you have the <stdlib.h> header file. */
! #undef HAVE_STDLIB_H
! /* Define if you have the <string.h> header file. */
! #undef HAVE_STRING_H
! /* Define if you have the <strings.h> header file. */
! #undef HAVE_STRINGS_H
! /* Define if you have the <sys/param.h> header file. */
! #undef HAVE_SYS_PARAM_H
! /* Define if you have the <unistd.h> header file. */
! #undef HAVE_UNISTD_H
! /* Define if you have the <zlib.h> header file. */
! #undef HAVE_ZLIB_H
! /* Define if you have the m library (-lm). */
! #undef HAVE_LIBM
! /* Define if you have the ncurses library (-lncurses). */
! #undef HAVE_LIBNCURSES
! /* Define if you have the z library (-lz). */
! #undef HAVE_LIBZ
! /* Name of package */
! #undef PACKAGE
/* Version number of package */
#undef VERSION
! /* Define if you have the iconv() function. */
! #undef HAVE_ICONV
!
! /* Define as const if the declaration of iconv() needs const. */
! #undef ICONV_CONST
! /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
! #undef HAVE_LANGINFO_CODESET
! /* Define if your <locale.h> file defines LC_MESSAGES. */
! #undef HAVE_LC_MESSAGES
! /* Define to 1 if translation of program messages to the user's native language
! is requested. */
! #undef ENABLE_NLS
! /* Define if the GNU gettext() function is already present or preinstalled. */
! #undef HAVE_GETTEXT
--- 8,284 ----
#undef ALL_LINGUAS
/* Zdefiniowane, gdy kompilujemy z -O */
#undef PREFIX
#undef PACKAGE
#undef VERSION
! /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
! systems. This function is required for `alloca.c' support on those systems.
! */
! #undef CRAY_STACKSEG_END
! /* "Do we build on Cygwin" */
! #undef CYGWIN
! /* Define to 1 if using `alloca.c'. */
! #undef C_ALLOCA
! /* "Do we use debbuging" */
! #undef DEBUG
!
! /* "Do we use parser debbuging" */
! #undef DEBUG_PARSER
!
! /* Define to 1 if translation of program messages to the user's native
! language is requested. */
! #undef ENABLE_NLS
!
! /* Define to 1 if you have `alloca', as a function or macro. */
! #undef HAVE_ALLOCA
!
! /* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
! */
! #undef HAVE_ALLOCA_H
!
! /* Define to 1 if you have the <argz.h> header file. */
! #undef HAVE_ARGZ_H
!
! /* Define if the GNU dcgettext() function is already present or preinstalled.
! */
#undef HAVE_DCGETTEXT
! /* Define to 1 if you have the <fcntl.h> header file. */
! #undef HAVE_FCNTL_H
!
! /* Define to 1 if you have the `feof_unlocked' function. */
#undef HAVE_FEOF_UNLOCKED
! /* Define to 1 if you have the `fgets_unlocked' function. */
#undef HAVE_FGETS_UNLOCKED
! /* Define to 1 if you have the `getcwd' function. */
#undef HAVE_GETCWD
! /* Define to 1 if you have the `getc_unlocked' function. */
! #undef HAVE_GETC_UNLOCKED
!
! /* Define to 1 if you have the `getegid' function. */
#undef HAVE_GETEGID
! /* Define to 1 if you have the `geteuid' function. */
#undef HAVE_GETEUID
! /* Define to 1 if you have the `getgid' function. */
#undef HAVE_GETGID
! /* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE
! /* Define if the GNU gettext() function is already present or preinstalled. */
! #undef HAVE_GETTEXT
!
! /* Define to 1 if you have the `getuid' function. */
#undef HAVE_GETUID
! /* Define to 1 if you have the `getwd' function. */
#undef HAVE_GETWD
! /* Define if you have the iconv() function. */
! #undef HAVE_ICONV
!
! /* Define if <inttypes.h> exists and doesn't clash with <sys/types.h>. */
! #undef HAVE_INTTYPES_H
!
! /* Define if <inttypes.h> exists, doesn't clash with <sys/types.h>, and
! declares uintmax_t. */
! #undef HAVE_INTTYPES_H_WITH_UINTMAX
!
! /* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
! #undef HAVE_LANGINFO_CODESET
!
! /* Define if your <locale.h> file defines LC_MESSAGES. */
! #undef HAVE_LC_MESSAGES
!
! /* Define to 1 if you have the `m' library (-lm). */
! #undef HAVE_LIBM
!
! /* Define to 1 if you have the `ncurses' library (-lncurses). */
! #undef HAVE_LIBNCURSES
!
! /* Define to 1 if you have the `z' library (-lz). */
! #undef HAVE_LIBZ
!
! /* Define to 1 if you have the <limits.h> header file. */
! #undef HAVE_LIMITS_H
!
! /* Define to 1 if you have the <locale.h> header file. */
! #undef HAVE_LOCALE_H
!
! /* Define to 1 if you have the <malloc.h> header file. */
! #undef HAVE_MALLOC_H
!
! /* Define to 1 if you have the <memory.h> header file. */
! #undef HAVE_MEMORY_H
!
! /* Define to 1 if you have the `mempcpy' function. */
#undef HAVE_MEMPCPY
! /* Define to 1 if you have the `mkdir' function. */
#undef HAVE_MKDIR
! /* Define to 1 if you have a working `mmap' system call. */
! #undef HAVE_MMAP
!
! /* Define to 1 if you have the `munmap' function. */
#undef HAVE_MUNMAP
! /* Define to 1 if you have the <ncurses.h> header file. */
! #undef HAVE_NCURSES_H
!
! /* Define to 1 if you have the <nl_types.h> header file. */
! #undef HAVE_NL_TYPES_H
!
! /* Define to 1 if you have the `putenv' function. */
#undef HAVE_PUTENV
! /* Define to 1 if you have the `setenv' function. */
#undef HAVE_SETENV
! /* Define to 1 if you have the `setlocale' function. */
#undef HAVE_SETLOCALE
! /* Define to 1 if you have the <stddef.h> header file. */
! #undef HAVE_STDDEF_H
!
! /* Define to 1 if you have the <stdint.h> header file. */
! #undef HAVE_STDINT_H
!
! /* Define if <stdint.h> exists, doesn't clash with <sys/types.h>, and declares
! uintmax_t. */
! #undef HAVE_STDINT_H_WITH_UINTMAX
!
! /* Define to 1 if you have the <stdlib.h> header file. */
! #undef HAVE_STDLIB_H
!
! /* Define to 1 if you have the `stpcpy' function. */
#undef HAVE_STPCPY
! /* Define to 1 if you have the `strcasecmp' function. */
#undef HAVE_STRCASECMP
! /* Define to 1 if you have the `strcspn' function. */
#undef HAVE_STRCSPN
! /* Define to 1 if you have the `strdup' function. */
#undef HAVE_STRDUP
! /* Define to 1 if you have the <strings.h> header file. */
! #undef HAVE_STRINGS_H
!
! /* Define to 1 if you have the <string.h> header file. */
! #undef HAVE_STRING_H
!
! /* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR
! /* Define to 1 if you have the `strtoul' function. */
#undef HAVE_STRTOUL
! /* Define to 1 if you have the <sys/param.h> header file. */
! #undef HAVE_SYS_PARAM_H
!
! /* Define to 1 if you have the <sys/stat.h> header file. */
! #undef HAVE_SYS_STAT_H
!
! /* Define to 1 if you have the <sys/types.h> header file. */
! #undef HAVE_SYS_TYPES_H
!
! /* Define to 1 if you have the `tsearch' function. */
#undef HAVE_TSEARCH
! /* Define to 1 if you have the <unistd.h> header file. */
! #undef HAVE_UNISTD_H
! /* Define if you have the unsigned long long type. */
! #undef HAVE_UNSIGNED_LONG_LONG
! /* Define to 1 if you have the <zlib.h> header file. */
! #undef HAVE_ZLIB_H
! /* Define to 1 if you have the `__argz_count' function. */
! #undef HAVE___ARGZ_COUNT
! /* Define to 1 if you have the `__argz_next' function. */
! #undef HAVE___ARGZ_NEXT
! /* Define to 1 if you have the `__argz_stringify' function. */
! #undef HAVE___ARGZ_STRINGIFY
! /* Define as const if the declaration of iconv() needs const. */
! #undef ICONV_CONST
! /* Define if integer division by zero raises signal SIGFPE. */
! #undef INTDIV0_RAISES_SIGFPE
! /* "Do we build on Linux box" */
! #undef LINUX
! /* "Magic taxis" */
! #undef MAGIC_TAXIS
! /* "Do we have optimization on" */
! #undef OPT
! /* Name of package */
! #undef PACKAGE
! /* Define to the address where bug reports for this package should be sent. */
! #undef PACKAGE_BUGREPORT
! /* Define to the full name of this package. */
! #undef PACKAGE_NAME
! /* Define to the full name and version of this package. */
! #undef PACKAGE_STRING
! /* Define to the one symbol short name of this package. */
! #undef PACKAGE_TARNAME
! /* Define to the version of this package. */
! #undef PACKAGE_VERSION
! /* Define if <inttypes.h> exists and defines unusable PRI* macros. */
! #undef PRI_MACROS_BROKEN
!
! /* If using the C implementation of alloca, define if you know the
! direction of stack growth for your system; otherwise it will be
! automatically deduced at run-time.
! STACK_DIRECTION > 0 => grows toward higher addresses
! STACK_DIRECTION < 0 => grows toward lower addresses
! STACK_DIRECTION = 0 => direction of growth unknown */
! #undef STACK_DIRECTION
!
! /* Define to 1 if you have the ANSI C header files. */
! #undef STDC_HEADERS
/* Version number of package */
#undef VERSION
! /* "Do we build on Djgpp" */
! #undef _DJGPP
! /* Define to empty if `const' does not conform to ANSI C. */
! #undef const
! /* Define as `__inline' if that's what the C compiler calls it, or to nothing
! if it is not supported. */
! #undef inline
! /* Define to `long' if <sys/types.h> does not define. */
! #undef off_t
! /* Define to `unsigned' if <sys/types.h> does not define. */
! #undef size_t
+ /* Define to unsigned long or unsigned long long if <inttypes.h> and
+ <stdint.h> don't define. */
+ #undef uintmax_t
Index: configure
===================================================================
RCS file: /cvsroot/lib/LIB/configure,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** configure 23 Aug 2002 22:54:20 -0000 1.38
--- configure 24 Aug 2002 14:16:53 -0000 1.39
***************
*** 1,52 ****
#! /bin/sh
-
# Guess values for system-dependent variables and create Makefiles.
! # Generated automatically using autoconf version 2.13
! # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
#
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
! # Defaults:
[...13249 lines suppressed...]
!
!
! # configure is writing to config.log, and then calls config.status.
! # config.status does its own redirection, appending to config.log.
! # Unfortunately, on DOS this fails, as config.log is still kept open
! # by configure, so config.status won't be able to write to it; its
! # output is simply discarded. So we exec the FD to /dev/null,
! # effectively closing config.log, so it can be properly (re)opened and
! # appended to by config.status. When coming back to configure, we
! # need to make the FD available again.
! if test "$no_create" != yes; then
! ac_cs_success=:
! exec 5>/dev/null
! $SHELL $CONFIG_STATUS || ac_cs_success=false
! exec 5>>config.log
! # Use ||, not &&, to avoid exiting from the if with $? = 1, which
! # would make configure fail if this is the last instruction.
! $ac_cs_success || { (exit 1); exit 1; }
! fi
Index: configure.in
===================================================================
RCS file: /cvsroot/lib/LIB/configure.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** configure.in 11 Jul 2002 00:32:55 -0000 1.27
--- configure.in 24 Aug 2002 14:16:53 -0000 1.28
***************
*** 1,4 ****
! AC_INIT("LIB.c")
! AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE("LIB",0.1.`cat patchlevel`)
SUBDIRS="lib utils intl @INTLSUB@ src @POSUB@"
--- 1,5 ----
! AC_INIT
! AC_CONFIG_SRCDIR("LIB.c")
! AC_CANONICAL_TARGET
AM_INIT_AUTOMAKE("LIB",0.1.`cat patchlevel`)
SUBDIRS="lib utils intl @INTLSUB@ src @POSUB@"
***************
*** 35,38 ****
--- 36,47 ----
AC_CHECK_FUNCS(getcwd getwd mkdir putenv strcspn strdup strstr)
+ AH_TEMPLATE(DEBUG, "Do we use debbuging")
+ AH_TEMPLATE(DEBUG_PARSER, "Do we use parser debbuging")
+ AH_TEMPLATE(OPT, "Do we have optimization on")
+ AH_TEMPLATE(MAGIC_TAXIS, "Magic taxis")
+ AH_TEMPLATE(LINUX, "Do we build on Linux box")
+ AH_TEMPLATE(CYGWIN, "Do we build on Cygwin")
+ AH_TEMPLATE(_DJGPP, "Do we build on Djgpp")
+
AC_MSG_CHECKING(--enable-debug)
AC_ARG_ENABLE(debug,
***************
*** 109,111 ****
! AC_OUTPUT(po/Makefile.in intl/Makefile doc/Makefile utils/Makefile lib/Makefile lib/poziomy/Makefile lib/poziomy/MSTO/Makefile lib/poziomy/WIEZ/Makefile lib/poziomy/rozne/Makefile Makefile)
--- 118,121 ----
! AC_CONFIG_FILES(po/Makefile.in intl/Makefile doc/Makefile utils/Makefile lib/Makefile lib/poziomy/Makefile lib/poziomy/MSTO/Makefile lib/poziomy/WIEZ/Makefile lib/poziomy/rozne/Makefile Makefile)
! AC_OUTPUT
Index: ostatnia_zmiana
===================================================================
RCS file: /cvsroot/lib/LIB/ostatnia_zmiana,v
retrieving revision 1.189
retrieving revision 1.190
diff -C2 -d -r1.189 -r1.190
*** ostatnia_zmiana 23 Aug 2002 22:54:21 -0000 1.189
--- ostatnia_zmiana 24 Aug 2002 14:16:53 -0000 1.190
***************
*** 1 ****
! * Nie wszystkie umiejêtno¶ci s± ograniczone przez æwiczenie teoretyczne
--- 1,3 ----
! * zmiany w autotoolsach
! * zmiana nazwy binarki na tymczasow± :)
! * otwarty konkurs na now± nazwê
|
|
From: <os...@us...> - 2002-08-24 14:16:59
|
Update of /cvsroot/lib/LIB/lib/poziomy In directory usw-pr-cvs1:/tmp/cvs-serv21285/lib/poziomy Modified Files: Makefile.in Log Message: * zmiany w autotoolsach * zmiana nazwy binarki na tymczasow± :) * otwarty konkurs na now± nazwê Index: Makefile.in =================================================================== RCS file: /cvsroot/lib/LIB/lib/poziomy/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.in 23 Aug 2002 22:54:21 -0000 1.9 --- Makefile.in 24 Aug 2002 14:16:53 -0000 1.10 *************** *** 58,67 **** PRE_UNINSTALL = : POST_UNINSTALL = : - build_alias = @build_alias@ - build_triplet = @build@ host_alias = @host_alias@ host_triplet = @host@ - target_alias = @target_alias@ - target_triplet = @target@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ --- 58,63 ---- |
|
From: <os...@us...> - 2002-08-24 14:16:59
|
Update of /cvsroot/lib/LIB/doc In directory usw-pr-cvs1:/tmp/cvs-serv21285/doc Modified Files: Makefile.in Log Message: * zmiany w autotoolsach * zmiana nazwy binarki na tymczasow± :) * otwarty konkurs na now± nazwê Index: Makefile.in =================================================================== RCS file: /cvsroot/lib/LIB/doc/Makefile.in,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** Makefile.in 23 Aug 2002 22:54:21 -0000 1.13 --- Makefile.in 24 Aug 2002 14:16:53 -0000 1.14 *************** *** 57,66 **** PRE_UNINSTALL = : POST_UNINSTALL = : - build_alias = @build_alias@ - build_triplet = @build@ host_alias = @host_alias@ host_triplet = @host@ - target_alias = @target_alias@ - target_triplet = @target@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ --- 57,62 ---- |
|
From: <os...@us...> - 2002-08-24 14:16:59
|
Update of /cvsroot/lib/LIB/lib/poziomy/WIEZ In directory usw-pr-cvs1:/tmp/cvs-serv21285/lib/poziomy/WIEZ Modified Files: Makefile.in Log Message: * zmiany w autotoolsach * zmiana nazwy binarki na tymczasow± :) * otwarty konkurs na now± nazwê Index: Makefile.in =================================================================== RCS file: /cvsroot/lib/LIB/lib/poziomy/WIEZ/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.in 23 Aug 2002 22:54:21 -0000 1.9 --- Makefile.in 24 Aug 2002 14:16:54 -0000 1.10 *************** *** 58,67 **** PRE_UNINSTALL = : POST_UNINSTALL = : - build_alias = @build_alias@ - build_triplet = @build@ host_alias = @host_alias@ host_triplet = @host@ - target_alias = @target_alias@ - target_triplet = @target@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ --- 58,63 ---- |
|
From: <os...@us...> - 2002-08-24 14:16:59
|
Update of /cvsroot/lib/LIB/lib In directory usw-pr-cvs1:/tmp/cvs-serv21285/lib Modified Files: Makefile.in Log Message: * zmiany w autotoolsach * zmiana nazwy binarki na tymczasow± :) * otwarty konkurs na now± nazwê Index: Makefile.in =================================================================== RCS file: /cvsroot/lib/LIB/lib/Makefile.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile.in 23 Aug 2002 22:54:21 -0000 1.12 --- Makefile.in 24 Aug 2002 14:16:53 -0000 1.13 *************** *** 58,67 **** PRE_UNINSTALL = : POST_UNINSTALL = : - build_alias = @build_alias@ - build_triplet = @build@ host_alias = @host_alias@ host_triplet = @host@ - target_alias = @target_alias@ - target_triplet = @target@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ --- 58,63 ---- |