From 14b385f2bf1d50083c19d01b436ff9040cdfbe13 Mon Sep 17 00:00:00 2001 From: Hugh McMaster Date: Wed, 27 Mar 2019 20:58:33 +1100 Subject: [PATCH] docs: Replace references to configure.in with configure.ac --- docs/README-macosx.md | 2 +- docs/README-porting.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README-macosx.md b/docs/README-macosx.md index 15ab39e653830..ee4f669bb1d67 100644 --- a/docs/README-macosx.md +++ b/docs/README-macosx.md @@ -100,7 +100,7 @@ You should replace EXE_NAME with the name of the executable. APP_NAME is what will be visible to the user in the Finder. Usually it will be the same as EXE_NAME but capitalized. E.g. if EXE_NAME is "testgame" then APP_NAME usually is "TestGame". You might also want to use `@PACKAGE@` to use the package -name as specified in your configure.in file. +name as specified in your configure.ac file. If your project builds more than one application, you will have to do a bit more. For each of your target applications, you need a separate rule. diff --git a/docs/README-porting.md b/docs/README-porting.md index 86243f6e8044b..de3059226837b 100644 --- a/docs/README-porting.md +++ b/docs/README-porting.md @@ -13,7 +13,7 @@ There are two basic ways of building SDL at the moment: 1. The "UNIX" way: ./configure; make; make install - If you have a GNUish system, then you might try this. Edit configure.in, + If you have a GNUish system, then you might try this. Edit configure.ac, take a look at the large section labelled: "Set up the configuration based on the host platform!"