This repository was archived by the owner on Oct 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,13 @@ AC_CONFIG_AUX_DIR([script])
1313# Though they look like gcc flags!
1414AM_INIT_AUTOMAKE ( [ foreign parallel-tests -Wall] )
1515m4_ifdef ( [ AM_SILENT_RULES ] , [ AM_SILENT_RULES ([ no] )] )
16+ # would fail with mingw otherwise
17+ m4_pattern_allow ( [ AM_PROG_AR] )
1618
1719# Checks for programs.
1820AC_PROG_CXX
1921AC_LANG ( [ C++] )
22+ AM_PROG_AR ( [ ] )
2023LT_INIT([ dlopen] )
2124
2225# Checks for header files.
Original file line number Diff line number Diff line change 55#include < string>
66#include < sstream>
77
8+ #ifdef __sun
9+ #undef SEC
10+ #endif
11+
812namespace Sass {
913 using namespace std ;
1014
@@ -59,9 +63,9 @@ namespace Sass {
5963 extern const double frequency_conversion_factors[2 ][2 ];
6064 extern const double resolution_conversion_factors[3 ][3 ];
6165
62- SassUnit string_to_unit (const string&);
66+ enum SassUnit string_to_unit (const string&);
6367 const char * unit_to_string (SassUnit unit);
64- SassUnitType get_unit_type (SassUnit unit);
68+ enum SassUnitType get_unit_type (SassUnit unit);
6569 // throws incompatibleUnits exceptions
6670 double conversion_factor (const string&, const string&);
6771
You can’t perform that action at this time.
0 commit comments