150 lines
3.8 KiB
C
150 lines
3.8 KiB
C
/* $Id$ */
|
|
/* Copyright (c) 2007 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS Devel configure */
|
|
/* configure is not free software; you can redistribute it and/or modify it
|
|
* under the terms of the Creative Commons Attribution-NonCommercial-ShareAlike
|
|
* 3.0 Unported as published by the Creative Commons organization.
|
|
*
|
|
* configure 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 Creative Commons Attribution-NonCommercial-
|
|
* ShareAlike 3.0 Unported license for more details.
|
|
*
|
|
* You should have received a copy of the Creative Commons Attribution-
|
|
* NonCommercial-ShareAlike 3.0 along with configure; if not, browse to
|
|
* http://creativecommons.org/licenses/by-nc-sa/3.0/ */
|
|
|
|
|
|
|
|
#include <System.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "configure.h"
|
|
#include "settings.h"
|
|
|
|
|
|
/* types */
|
|
typedef enum _SETTINGS_TYPE
|
|
{
|
|
ST_H = 0,
|
|
ST_SH
|
|
} SettingsType;
|
|
#define ST_LAST ST_SH
|
|
String * sSettingsType[ST_LAST+1] =
|
|
{
|
|
"h", "sh"
|
|
};
|
|
|
|
|
|
/* functions */
|
|
/* settings */
|
|
static int _settings_do(Prefs * prefs, Config * config,
|
|
String const * directory, String const * package,
|
|
String const * version, String const * extension);
|
|
int settings(Prefs * prefs, Config * config, String const * directory,
|
|
String const * package, String const * version)
|
|
{
|
|
int ret = 0;
|
|
String * p;
|
|
unsigned long i;
|
|
char c;
|
|
|
|
if((p = config_get(config, "", "config")) == NULL)
|
|
return 0;
|
|
for(i = 0;; i++)
|
|
{
|
|
if(p[i] != ',' && p[i] != '\0')
|
|
continue;
|
|
c = p[i];
|
|
p[i] = '\0';
|
|
ret |= _settings_do(prefs, config, directory, package, version,
|
|
p);
|
|
if(c == '\0')
|
|
break;
|
|
p[i] = c;
|
|
p+=i+1;
|
|
i = 0;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static int _do_h(Prefs * prefs, Config * config, FILE * fp,
|
|
String const * package, String const * version);
|
|
static int _do_sh(Prefs * prefs, Config * config, FILE * fp,
|
|
String const * package, String const * version);
|
|
static int _settings_do(Prefs * prefs, Config * config,
|
|
String const * directory, String const * package,
|
|
String const * version, String const * extension)
|
|
{
|
|
int ret = 0;
|
|
int i;
|
|
String * filename;
|
|
FILE * fp;
|
|
|
|
for(i = 0; i <= ST_LAST; i++)
|
|
if(strcmp(extension, sSettingsType[i]) == 0)
|
|
break;
|
|
if(i > ST_LAST)
|
|
{
|
|
fprintf(stderr, "%s%s%s", "configure: ", extension,
|
|
": Unknown settings type\n");
|
|
return 1;
|
|
}
|
|
if(prefs->flags & PREFS_n)
|
|
return 0;
|
|
if((filename = string_new(directory)) == NULL)
|
|
return 1;
|
|
if(string_append(&filename, "/config.") != 0
|
|
|| string_append(&filename, extension) != 0)
|
|
{
|
|
string_delete(filename);
|
|
return 1;
|
|
}
|
|
if((fp = fopen(filename, "w")) == NULL)
|
|
configure_error(filename, 0);
|
|
string_delete(filename);
|
|
if(fp == NULL)
|
|
return 1;
|
|
if(prefs->flags & PREFS_v)
|
|
printf("%s%s%s%s\n", "Creating config.", extension, " in ",
|
|
directory);
|
|
switch(i)
|
|
{
|
|
case ST_H:
|
|
ret |= _do_h(prefs, config, fp, package, version);
|
|
break;
|
|
case ST_SH:
|
|
ret |= _do_sh(prefs, config, fp, package, version);
|
|
break;
|
|
}
|
|
fclose(fp);
|
|
return ret;
|
|
}
|
|
|
|
static int _do_h(Prefs * prefs, Config * config, FILE * fp,
|
|
String const * package, String const * version)
|
|
{
|
|
char const * p;
|
|
|
|
fprintf(fp, "%s%s%s%s%s%s", "#define PACKAGE \"", package, "\"\n",
|
|
"#define VERSION \"", version, "\"\n");
|
|
if((p = prefs->prefix) != NULL || (p = config_get(config, "", "prefix"))
|
|
!= NULL)
|
|
fprintf(fp, "%s%s%s", "\n#ifndef PREFIX\n\
|
|
# define PREFIX \"", p, "\"\n#endif\n");
|
|
return 0;
|
|
}
|
|
|
|
static int _do_sh(Prefs * prefs, Config * config, FILE * fp,
|
|
String const * package, String const * version)
|
|
{
|
|
char const * p;
|
|
|
|
fprintf(fp, "%s%s%s%s%s%s", "PACKAGE=\"", package, "\"\n",
|
|
"VERSION=\"", version, "\"\n");
|
|
if((p = prefs->prefix) != NULL || (p = config_get(config, "", "prefix"))
|
|
!= NULL)
|
|
fprintf(fp, "%s%s%s", "\nPREFIX=\"", p, "\"\n");
|
|
return 0;
|
|
}
|