Windows Azure Cloud Storage ermöglicht es Ihnen bereits ab 0,10€ pro GB/Monat die Vorteile der Cloud zu nutzen.
Hypercell ein ] Hypercell aus ] Zeige Navigation ] Verstecke Navigation ]
c++.de  
   
Advanced Developers Conference     
Bücher-Shop mit Amazon (Buchkategorien)C++ : Referenzen zu C++ : C++ Builder : Visual C++ : C# : Java : Spieleprogrammierung : Systemprogrammierung Linux : Software-Entwicklung : .NET : Compilertechnik : Algorithmen & Datenstrukturen : Objektorientierung : Entwurfsmuster : UML : eXtreme Programming : Scrum : Projektmanagement : Software-Testing : Datenbanken : Tom DeMarco : Dilbert : User Friendly
C/C++ Forum :: Die Artikel ::  Build-Systeme Teil 5: GNU Autotools  
Gehen Sie zu Seite Zurück  1, 2
  Zeige alle Beiträge auf einer Seite
Auf Beitrag antworten
Autor Nachricht
ten
Mitglied

Benutzerprofil
Anmeldungsdatum: 17.12.2006
Beiträge: 1277
Beitrag ten Mitglied 10:09:19 10.01.2007   Titel:              Zitieren

Artchi schrieb:
@ten! Eh, gibts doch schon! Build-Systeme Teil 5 ist nicht umsonst Teil 5. Schau einfach mal ins Magazin-Verzeichnis:
http://www.c-plusplus.de/forum/viewtopic-var-t-is-133193.html

danke, den hab ich voll übersehen...
:xmas2:

_________________
god bless the circle jerks, god bless rodney on the roq, god bless skateboards.
darthdespotism
Autor

Benutzerprofil
Anmeldungsdatum: 23.02.2007
Beiträge: 1441
Beitrag darthdespotism Autor 15:35:14 07.06.2008   Titel:              Zitieren

Weis jemand zufällig, wie der Dateiname für make dist-* zusammengesetzt wird? Bei mir gibt#s da am Anfang ein überflüssiges '-' wodurch make dist-* nicht funktioniert

configure.in
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT("spaceshooter-sfml", 1.0pre, "bugs@coders-nemesis.eu")
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([Main.cpp])

# Checks for programs.
AC_PROG_CXX

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([libintl.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T

# Checks for library functions.
AC_HEADER_STDC
AC_CHECK_FUNCS([memset sqrt])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT("spaceshooter-sfml", 1.0pre, "bugs@coders-nemesis.eu")
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([Main.cpp])

# Checks for programs.
AC_PROG_CXX

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([libintl.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T

# Checks for library functions.
AC_HEADER_STDC
AC_CHECK_FUNCS([memset sqrt])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.61)
AC_INIT("spaceshooter-sfml", 1.0pre, "bugs@coders-nemesis.eu")
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([Main.cpp])

# Checks for programs.
AC_PROG_CXX

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([libintl.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_CONST
AC_C_INLINE
AC_TYPE_SIZE_T

# Checks for library functions.
AC_HEADER_STDC
AC_CHECK_FUNCS([memset sqrt])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT


Code:
$ make dist-gzip
{ test ! -d -spaceshooter-sfml--1.0pre || { find -spaceshooter-sfml--1.0pre -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr -spaceshooter-sfml--1.0pre; }; }
test -d -spaceshooter-sfml--1.0pre || mkdir -spaceshooter-sfml--1.0pre
mkdir: Ungültige Option -- s
„mkdir --help“ gibt weitere Informationen.
make: *** [distdir] Fehler 1
Code:
$ make dist-gzip
{ test ! -d -spaceshooter-sfml--1.0pre || { find -spaceshooter-sfml--1.0pre -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr -spaceshooter-sfml--1.0pre; }; }
test -d -spaceshooter-sfml--1.0pre || mkdir -spaceshooter-sfml--1.0pre
mkdir: Ungültige Option -- s
„mkdir --help“ gibt weitere Informationen.
make: *** [distdir] Fehler 1
Code:
$ make dist-gzip
{ test ! -d -spaceshooter-sfml--1.0pre || { find -spaceshooter-sfml--1.0pre -type d ! -perm -200 -exec chmod u+w {} ';' && rm -fr -spaceshooter-sfml--1.0pre; }; }
test -d -spaceshooter-sfml--1.0pre || mkdir -spaceshooter-sfml--1.0pre
mkdir: Ungültige Option -- s
„mkdir --help“ gibt weitere Informationen.
make: *** [distdir] Fehler 1

_________________
There are only 10 types of people in the world: Those who understand binary, and those who don't.
http://christoph.devler.coders-nemesis.eu


Zuletzt bearbeitet von darthdespotism am 15:36:31 07.06.2008, insgesamt 1-mal bearbeitet
ProgChild
Autor

Benutzerprofil
Anmeldungsdatum: 29.12.2003
Beiträge: 2261
Beitrag ProgChild Autor 15:43:09 07.06.2008   Titel:              Zitieren

darthdespotism schrieb:
Weis jemand zufällig, wie der Dateiname für make dist-* zusammengesetzt wird? Bei mir gibt#s da am Anfang ein überflüssiges '-' wodurch make dist-* nicht funktioniert

configure.in
Code:
AC_INIT("spaceshooter-sfml", 1.0pre, "bugs@coders-nemesis.eu")
Code:
AC_INIT("spaceshooter-sfml", 1.0pre, "bugs@coders-nemesis.eu")
Code:
AC_INIT("spaceshooter-sfml", 1.0pre, "bugs@coders-nemesis.eu")

Was sollen denn die Anführungszeichen da? Kann es sein, dass es daran liegt, dass die da nicht hingehören.

Aber das hier ist bei Weitem weder der richtige Thread, noch das richtige Forum, um sowas zu fragen.

_________________
meine Homepage | Artikel: GNU Autotools (PDF) | Software: Wallpaper Action, Netwalker | Bibliotheken: FoxTray


Zuletzt bearbeitet von ProgChild am 15:44:02 07.06.2008, insgesamt 2-mal bearbeitet
darthdespotism
Autor

Benutzerprofil
Anmeldungsdatum: 23.02.2007
Beiträge: 1441
Beitrag darthdespotism Autor 15:52:22 07.06.2008   Titel:              Zitieren

OK du hast wohl recht dass das hier Off-Topic ist, sorry.

Deine Diagnose war richtig ;) danke

_________________
There are only 10 types of people in the world: Those who understand binary, and those who don't.
http://christoph.devler.coders-nemesis.eu
C/C++ Forum :: Die Artikel ::  Build-Systeme Teil 5: GNU Autotools  
Gehen Sie zu Seite Zurück  1, 2
Auf Beitrag antworten

Zeige alle Beiträge auf einer Seite




Nächstes Thema anzeigen
Vorheriges Thema anzeigen
Sie können keine Beiträge in dieses Forum schreiben.
Sie können auf Beiträge in diesem Forum antworten.
Sie können Ihre Beiträge in diesem Forum nicht bearbeiten.
Sie können Ihre Beiträge in diesem Forum nicht löschen.
Sie können an Umfragen in diesem Forum nicht mitmachen.

Powered by phpBB © 2001, 2002 phpBB Group :: FI Theme

c++.de ist Teilnehmer des Partnerprogramms von Amazon Europe S.à.r.l. und Partner des Werbeprogramms, das zur Bereitstellung eines Mediums für Websites konzipiert wurde, mittels dessen durch die Platzierung von Werbeanzeigen und Links zu amazon.de Werbekostenerstattung verdient werden kann.

Die Vervielfältigung der auf den Seiten www.c-plusplus.de, www.c-plusplus.info, www.c-sar.de, www.c-plusplus.net und www.baeckmann.de enthaltenen Informationen ohne eine schriftliche Genehmigung des Seitenbetreibers ist untersagt (vgl. §4 Urheberrechtsgesetz). Die Nutzung und Änderung der vorgestellten Strukturen und Verfahren in privaten und kommerziellen Softwareanwendungen ist ausdrücklich erlaubt, soweit keine Rechte Dritter verletzt werden. Der Seitenbetreiber übernimmt keine Gewähr für die Funktion einzelner Beiträge oder Programmfragmente, insbesondere übernimmt er keine Haftung für eventuelle aus dem Gebrauch entstehenden Folgeschäden.