0fbe3d839a
In particular, - Remove reference to deprecated X11R6 directory. - Replace FLAGS variable with CFLAGS, CPPFLAGS, and LDFLAGS. - Honor CC, PREFIX, and DESTDIR variables. - Use INSTALL instead of cp for installation. - Remove redundant -lXext flag. - Move contents of wmitime directory to top directory to ease the building process. Inspired in part by the Debian patches [1,2]. [1] http://sources.debian.net/src/wmitime/0.3%2B20120605-1/debian/patches/20-makefile-CC.patch/ [2] http://sources.debian.net/src/wmitime/0.3%2B20120605-1/debian/patches/make-install.patch/
31 lines
385 B
C
31 lines
385 B
C
// french.h
|
|
// Created by Pierre-Marie.Allemand@capway.com
|
|
// 08-jan-1999
|
|
|
|
static char daynames[7][3] =
|
|
{
|
|
{"Di"},
|
|
{"Lu"},
|
|
{"Ma"},
|
|
{"Me"},
|
|
{"Je"},
|
|
{"Ve"},
|
|
{"Sa"}
|
|
};
|
|
|
|
static char monthnames[12][4] =
|
|
{
|
|
{"Jan"},
|
|
{"Fev"},
|
|
{"Mar"},
|
|
{"Avr"},
|
|
{"Mai"},
|
|
{"Jun"},
|
|
{"Jui"},
|
|
{"Aou"},
|
|
{"Sep"},
|
|
{"Oct"},
|
|
{"Nov"},
|
|
{"Dec"}
|
|
};
|